Introduce test_ust_python_agent_vs_tools.py
[deliverable/lttng-ivc.git] / lttng_ivc / settings.py
1 # All tests are run if empty
2 import os
3
4 test_only = {}
5
6 base_dir = os.path.dirname(os.path.abspath(__file__))
7
8 configuration_file = os.path.join(base_dir, "config.yaml")
9 run_configuration_file = os.path.join(base_dir, "run_configuration.yaml")
10
11 projects_cache_folder = os.path.join(base_dir, "runtime/projects_cache")
12 git_remote_folder = os.path.join(base_dir, "runtime/git_remote")
13
14 apps_folder = os.path.join(base_dir, "apps")
15 apps_gen_events_folder = os.path.join(apps_folder, "gen_ust_events")
16 apps_preload_provider_folder = os.path.join(apps_folder, "preload_provider")
17 apps_jul_1 = os.path.join(apps_folder, "jul-1.0")
18 apps_jul_2 = os.path.join(apps_folder, "jul-2.0")
19 apps_python = os.path.join(apps_folder, "python")
20
21 # Used for checksum validation
22 project_py_file_location = os.path.join(base_dir, "utils/project.py")
23
24 tmp_object_prefix = "lttng-ivc-"
25
26 default_babeltrace = "babeltrace-1.5"
27
28 lttng_test_procfile = "/proc/lttng-test-filter-event"
This page took 0.03084 seconds and 5 git commands to generate.