Introduce test_ust_python_agent_vs_tools.py
[deliverable/lttng-ivc.git] / lttng_ivc / settings.py
index a2a1b2fb7897e4837ed679293b72a9d57beb9597..55d0a1c796d2bb78746e9b360ceeada3eafcfbd0 100644 (file)
@@ -3,15 +3,26 @@ import os
 
 test_only = {}
 
-configuration_file = os.path.dirname(os.path.abspath(__file__)) + "/config.yaml"
-run_configuration_file = os.path.dirname(os.path.abspath(__file__)) + "/run_configuration.yaml"
+base_dir = os.path.dirname(os.path.abspath(__file__))
 
-projects_cache_folder = os.path.dirname(os.path.abspath(__file__)) + "/runtime/projects_cache"
-git_remote_folder = os.path.dirname(os.path.abspath(__file__)) + "/runtime/git_remote"
-app_folder = os.path.dirname(os.path.abspath(__file__)) + "/runtime/git_remote"
-apps_folder = os.path.dirname(os.path.abspath(__file__)) + "/apps"
+configuration_file = os.path.join(base_dir, "config.yaml")
+run_configuration_file = os.path.join(base_dir, "run_configuration.yaml")
+
+projects_cache_folder = os.path.join(base_dir, "runtime/projects_cache")
+git_remote_folder = os.path.join(base_dir, "runtime/git_remote")
+
+apps_folder = os.path.join(base_dir, "apps")
 apps_gen_events_folder = os.path.join(apps_folder, "gen_ust_events")
+apps_preload_provider_folder = os.path.join(apps_folder, "preload_provider")
+apps_jul_1 = os.path.join(apps_folder, "jul-1.0")
+apps_jul_2 = os.path.join(apps_folder, "jul-2.0")
+apps_python = os.path.join(apps_folder, "python")
+
+# Used for checksum validation
+project_py_file_location = os.path.join(base_dir, "utils/project.py")
 
 tmp_object_prefix = "lttng-ivc-"
 
 default_babeltrace = "babeltrace-1.5"
+
+lttng_test_procfile = "/proc/lttng-test-filter-event"
This page took 0.024386 seconds and 5 git commands to generate.