-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathall.rb
More file actions
82 lines (80 loc) · 3.72 KB
/
Copy pathall.rb
File metadata and controls
82 lines (80 loc) · 3.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# frozen_string_literal: true
module AutoHCK
Bundler.require
require 'English'
require 'active_support/core_ext/hash/deep_merge'
require 'active_support/core_ext/string/inflections'
require 'csv'
require 'date'
require 'erb'
require 'erubi'
require 'fileutils'
require 'json'
require 'nori/parser/rexml'
require 'optparse'
require 'pathname'
require 'shellwords'
require 'socket'
require 'tempfile'
require 'uri'
require 'yaml'
require 'zip'
require_relative 'auxiliary/autoload_extension'
extend AutoloadExtension
autoload_relative :AutoHCKError, 'exceptions'
autoload_relative :AutoHCKInterrupt, 'exceptions'
autoload_relative :CLI, 'cli'
autoload_relative :ClientError, 'setupmanagers/exceptions'
autoload_relative :ClientRunError, 'setupmanagers/exceptions'
autoload_relative :Config, 'config'
autoload_relative :ConfigManager, 'engines/config_manager/config_manager'
autoload_relative :CmdRun, 'auxiliary/cmd_run'
autoload_relative :CmdRunError, 'exceptions'
autoload_relative :DiffChecker, 'auxiliary/diff_checker'
autoload_relative :Downloader, 'auxiliary/downloader'
autoload_relative :Engine, 'engines/engine'
autoload_relative :EngineError, 'engines/exceptions'
autoload_relative :ExtraSoftwareBrokenConfig, 'auxiliary/extra_software/exceptions'
autoload_relative :ExtraSoftwareManager, 'auxiliary/extra_software/manager'
autoload_relative :ExtraSoftwareMissingConfig, 'auxiliary/extra_software/exceptions'
autoload_relative :Github, 'auxiliary/github'
autoload_relative :GithubInitializationError, 'exceptions'
autoload_relative :GithubPullRequestLoadError, 'exceptions'
autoload_relative :HCKClient, 'setupmanagers/hckclient'
autoload_relative :HCKInstall, 'engines/hckinstall/hckinstall'
autoload_relative :HCKStudio, 'setupmanagers/hckstudio'
autoload_relative :HCKTest, 'engines/hcktest/hcktest'
autoload_relative :Helper, 'helper'
autoload_relative :InvalidConfigFile, 'exceptions'
autoload_relative :InvalidEngineTypeError, 'engines/exceptions'
autoload_relative :InvalidPathError, 'exceptions'
autoload_relative :JUnit, 'junit'
autoload_relative :MachineError, 'setupmanagers/exceptions'
autoload_relative :MachinePidNil, 'setupmanagers/exceptions'
autoload_relative :MachineRunError, 'setupmanagers/exceptions'
autoload_relative :Models, 'models'
autoload_relative :MultiLogger, 'auxiliary/multi_logger'
autoload_relative :NotImplementedError, 'exceptions'
autoload_relative :OpenJsonError, 'exceptions'
autoload_relative :PackageManager, 'auxiliary/package_manager'
autoload_relative :Pgroup, 'auxiliary/pgroup'
autoload_relative :PhysHCK, 'setupmanagers/physhck/physhck'
autoload_relative :Playlist, 'engines/hcktest/playlist'
autoload_relative :Project, 'project'
autoload_relative :QemuHCK, 'setupmanagers/qemuhck/qemuhck'
autoload_relative :QemuHCKError, 'setupmanagers/qemuhck/exceptions'
autoload_relative :QemuMachine, 'setupmanagers/qemuhck/qemu_machine'
autoload_relative :QemuRunError, 'setupmanagers/qemuhck/exceptions'
autoload_relative :ReplacementMap, 'auxiliary/replacement_map'
autoload_relative :ResourceScope, 'auxiliary/resource_scope'
autoload_relative :ResultUploader, 'resultuploaders/result_uploader'
autoload_relative :SetupManager, 'setupmanagers/setupmanager'
autoload_relative :SetupManagerError, 'setupmanagers/exceptions'
autoload_relative :StudioConnectError, 'setupmanagers/exceptions'
autoload_relative :SysInfoParser, 'auxiliary/sysinfo_parser'
autoload_relative :Targets, 'engines/hcktest/targets'
autoload_relative :Tests, 'engines/hcktest/tests'
autoload_relative :Tools, 'engines/hcktest/tools'
autoload_relative :Trap, 'trap'
autoload_relative :UIExecutor, 'auxiliary/ui_agent/ui_executor'
end