aboutsummaryrefslogtreecommitdiff
path: root/src/globalvars.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/globalvars.py')
-rw-r--r--src/globalvars.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/globalvars.py b/src/globalvars.py
index 9a7e958..f1f76ab 100644
--- a/src/globalvars.py
+++ b/src/globalvars.py
@@ -17,12 +17,18 @@ srcdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())
"""Source directory for all benchmarks"""
benchsrcdir = os.path.join(srcdir, "benchmarks")
+"""Source directory for all benchmarks"""
+allocsrcdir = os.path.join(srcdir, "allocators")
+
"""Root directory of allocbench"""
allocbenchdir = os.path.dirname(srcdir)
"""Path of the build directory"""
builddir = os.path.join(allocbenchdir, "build")
+"""Path of the allocators build directory"""
+allocbuilddir = os.path.join(builddir, "allocators")
+
"""Directory were the benchmark results are stored"""
resdir = None