X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/blobdiff_plain/99fdc861d13cc7e33f4e0248f19fe73d6533f580..5c61beffdb88002b3296c079188ffdb794f96149:/gw-tests/lib.sh diff --git a/gw-tests/lib.sh b/gw-tests/lib.sh index 4bc522b..5df4598 100644 --- a/gw-tests/lib.sh +++ b/gw-tests/lib.sh @@ -142,9 +142,10 @@ _measure() { kill_load fi - # Create a plot script at the end to signalize that the - # measurement was successfully finished - cat > plot.sh <<-EOF + if [ ! "$SKIPPED" ]; then + # Create a plot script at the end to signalize that the + # measurement was successfully finished + cat > plot.sh <<-EOF #!/bin/bash export kvers=$kvers export hostkvers=$hostkvers @@ -153,7 +154,8 @@ _measure() { cd \$(dirname \$0)/$(dirname $script) exec ./$(basename $script) --plot "\$@" EOF - chmod +x plot.sh + chmod +x plot.sh + fi }