From e0ff4c817412eab57cd5cbf65ed80c8552c2a368 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 28 Aug 2019 14:18:46 +0200 Subject: add allocsrcdir and allocbuild dir to globalvars --- src/globalvars.py | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- cgit v1.2.3