aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilosz Wasilewski <milosz.wasilewski@linaro.org>2014-04-23 14:49:12 +0100
committerMilosz Wasilewski <milosz.wasilewski@linaro.org>2014-04-23 14:49:12 +0100
commit0c77cdd96e5ff9ed7bf3534f7d96d695c6cfd57d (patch)
treebbf79da6de68590737e50be484a8f823795ff813
parent2d97f2b19dcbc345996fed1d0c9bee170ef3064e (diff)
create-jobs: fixed node copying
Signed-off-by: Milosz Wasilewski <milosz.wasilewski@linaro.org>
-rw-r--r--create-jobs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/create-jobs.py b/create-jobs.py
index 5a6d944..0d2b352 100644
--- a/create-jobs.py
+++ b/create-jobs.py
@@ -183,6 +183,7 @@ for mode in modes:
test_case[ACTIONS].append(hostshell)
test_case[ACTIONS].append(targetshell)
#pprint(test_case)
+ test_case[ACTIONS].append(deepcopy(SUBMIT_RESULTS))
f = open("wa2_%s.json" % benchmark.split(".")[0], "w")
f.write(json.dumps(test_case, sort_keys=True, indent=4))
f.close()
@@ -197,6 +198,7 @@ for mode in modes:
targetshell[PARAMETERS][TESTDEF_REPOS][0][PARAMETERS][SIGNAL_PREFIX] = benchmark.split(".")[0]
test_case[ACTIONS].append(hostshell)
test_case[ACTIONS].append(targetshell)
+ test_case[ACTIONS].append(deepcopy(SUBMIT_RESULTS))
#pprint(test_case)
f = open("wa2_%s.json" % benchmark.split(".")[0], "w")
f.write(json.dumps(test_case, sort_keys=True, indent=4))