memgraph/tests/macro_benchmark/common.py
Mislav Bradac 7e5dddecae Move harness stuff to parent directory
Reviewers: buda

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D799
2017-09-15 14:05:26 +02:00

21 lines
510 B
Python

import os
WALL_TIME = "wall_time"
CPU_TIME = "cpu_time"
MAX_MEMORY = "max_memory"
DIR_PATH = os.path.dirname(os.path.realpath(__file__))
def get_absolute_path(path, base=""):
if base == "build":
extra = "../../build"
elif base == "build_release":
extra = "../../build_release"
elif base == "libs":
extra = "../../libs"
elif base == "config":
extra = "../../config"
else:
extra = ""
return os.path.normpath(os.path.join(DIR_PATH, extra, path))