Fixed parent build for new harness client.

Reviewers: mislav.bradac

Reviewed By: mislav.bradac

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D713
This commit is contained in:
Matej Ferencevic 2017-08-25 13:44:35 +02:00
parent ca8fb55ac5
commit a31a628da1
2 changed files with 5 additions and 4 deletions
tools/apollo

View File

@ -30,7 +30,7 @@ TIMEOUT=600 ./init
cd build
cmake -DCMAKE_BUILD_TYPE=release ..
TIMEOUT=1000 make -j$THREADS memgraph_link_target
TIMEOUT=1000 make -j$THREADS memgraph_link_target parent__macro_benchmark__harness_client
cd ../../memgraph/tools/apollo

View File

@ -212,10 +212,11 @@ if mode == "diff":
binary_parent_path = os.path.join(BUILD_PARENT_DIR, binary_parent_name)
parent_config_path = os.path.join(PARENT_DIR, "config")
parent_macro_bench_path = os.path.join(PARENT_DIR, "tests", "macro_benchmark")
parent_stress_common = os.path.join(PARENT_DIR, "tests", "stress", "common.py")
parent_harness_client_binary = os.path.join(BUILD_PARENT_DIR, "tests",
"macro_benchmark", "harness_client")
infile = create_archive("macro_benchmark_parent", [binary_parent_path,
parent_macro_bench_path, parent_stress_common, parent_config_path],
cwd = WORKSPACE_DIR)
parent_macro_bench_path, parent_config_path,
parent_harness_client_binary], cwd = WORKSPACE_DIR)
supervisor = "./parent/tests/macro_benchmark/harness/harness.py"
args = MACRO_BENCHMARK_ARGS + " --RunnerBin " + binary_parent_path
outfile_paths = "\./parent/tests/macro_benchmark/harness/\.harness_summary"