From 6027198427d77ae48932104eed2615968ae74616 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 6 Mar 2019 12:19:40 +0100 Subject: use timestamps in allocator build system --- src/globalvars.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/globalvars.py') diff --git a/src/globalvars.py b/src/globalvars.py index afc8bf6..fb80a26 100644 --- a/src/globalvars.py +++ b/src/globalvars.py @@ -1,3 +1,14 @@ +import os + + +"""Dict holding facts about the current benchmark run""" +facts = {} + +"""Verbosity level -1: quiet, 0: status, 1: info, 2: stdout of subcommands, 3: debug info""" verbosity = 0 +"""File were the allocators definitions are loaded from""" allocators_file = None + +"""Path of the build directory""" +builddir = os.path.join(os.getcwd(), "build") -- cgit v1.2.3