Skip to content

Commit 52e1ac0

Browse files
authored
Merge pull request #9 from redhat-performance/add_run_info
Save run status to proper location
2 parents 97a5b45 + 33eb076 commit 52e1ac0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyperf/pyperf_run

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,9 @@ else
241241
mv ${test_name_run}_*.out ${RESULTSDIR}
242242
lines=`wc -l ${RESULTSDIR}/*.csv | cut -d' ' -f1`
243243
if [ $? -ne 0 ]; then
244-
echo Failed >> test_results_report
244+
echo Failed >> ${RESULTSDIR}/test_results_report
245245
else
246-
echo Ran >> test_results_report
246+
echo Ran >> ${RESULTSDIR}/test_results_report
247247
fi
248248
cp /tmp/hammerdb.out ${RESULTSDIR}
249249
cp ${curdir}/meta_data.yml ${RESULTSDIR}

0 commit comments

Comments
 (0)