diff options
author | joreland@mysql.com <> | 2005-02-12 15:05:33 +0100 |
---|---|---|
committer | joreland@mysql.com <> | 2005-02-12 15:05:33 +0100 |
commit | 7a08f3cc8c386413b4c145aac2a7790fd92e3ac7 (patch) | |
tree | 237faba18bc0929909aeaad4532c555f7861ca54 /ndb/test | |
parent | 8e0cf97a5712a1d8709097257040a90236c4f635 (diff) | |
download | mariadb-git-7a08f3cc8c386413b4c145aac2a7790fd92e3ac7.tar.gz |
wl1292 - ndb autotest
link to log if it exists, regardless of test result
Diffstat (limited to 'ndb/test')
-rwxr-xr-x | ndb/test/run-test/make-html-reports.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ndb/test/run-test/make-html-reports.sh b/ndb/test/run-test/make-html-reports.sh index 89f13a4b62a..6278b835dea 100755 --- a/ndb/test/run-test/make-html-reports.sh +++ b/ndb/test/run-test/make-html-reports.sh @@ -154,9 +154,13 @@ do ts=`time_spec $time` res_txt="" case $res in - 0) pass; res_txt="PASSED"; res_dir=" ";; + 0) pass; res_txt="PASSED";; *) fail; res_txt="FAILED";; esac + + if [ ! -d "result.$no" ]; then res_dir=" "; fi + + total=`expr $total + $time` ( |