-
Notifications
You must be signed in to change notification settings - Fork 13
/
config.ini
54 lines (52 loc) · 1.94 KB
/
config.ini
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
;
; Global configuration file for the regression tests.
;
; Local-specific settings should be put into config_local.ini. Do NOT edit this
; file to override the settings!
;
[logging]
; Enable/disable logging.
enabled = 1
; Path to the directory with log files.
logs_dir = logs
; Extension of log files.
extension = .log
; Format of the log entries.
; The percentage character ('%') has to be doubled because of Python's
; ConfigParser (it performs variable interpolation by default).
entry_format = %%(asctime)s %%(levelname)s: %%(message)s
; Should we also log to the standard error?
log_also_to_stderr = 0
; Prefix for log entries into the standard error. A space is automatically
; appended after the prefix.
stderr_entry_prefix = [LOG]
[runner]
; Path to Clang (REQUIRED).
clang_dir =
; Path to the directory where RetDec was installed (REQUIRED).
retdec_install_dir =
; Root directory containing all the regression tests (REQUIRED)
tests_root_dir =
; Name of the files containing test configuration.
test_file = test.py
; Number of processors to be used to run the tests (0 = autodetect).
tests_procs = 0
; A comma-separated list of directories to exclude when running tests.
; Paths should be relative to tests_root_dir.
excluded_dirs =
; Should tests that compile C source code be skipped (0 = no, 1 = yes)?
skip_c_compilation_tests = 0
; Are tests for our IDA plugin enabled? By default, they are disabled. To
; enable them, change this variable to 1 and set the following two variables.
idaplugin_tests_enabled = 0
; Path to IDA Pro. Needed when tests for our IDA plugin are enabled.
idaplugin_ida_dir =
; Path to the run-ida-decompilation.py script. Needed when tests for our IDA
; plugin are enabled.
idaplugin_script =
; Are tests for r2 plugin enabled? By default, they are disabled. To
; enable them, change this variable to 1.
r2plugin_tests_enabled = 0
; Path to the run-r2-decompilation.py script. Needed when tests for our r2
; plugin are enabled.
r2plugin_script =