Use os.path.join
[deliverable/lttng-ivc.git] / lttng_ivc / settings.py
index 3a67f5a663960ab2bb0cc4fa4f037e59bb5d5293..7c9e3e43b1d9f81028733f53f77fa795bec46e58 100644 (file)
@@ -1,10 +1,20 @@
 # All tests are run if empty
 import os
 
-test_only = {"lttng-ust-2.7"}
+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"
+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")
+
+tmp_object_prefix = "lttng-ivc-"
+
+default_babeltrace = "babeltrace-1.5"
This page took 0.025564 seconds and 5 git commands to generate.