Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lochel committed May 20, 2015
2 parents d798361 + 7d0e893 commit 576a904
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions partest/runtests.pl
Expand Up @@ -93,7 +93,7 @@
print(" -failing Run failing tests instead of working.\n");
print(" -veryfew Run only a very small number of tests to see if runtests.pl is working.\n");
print(" -gitlibs If you have installed omc using GITLIBRARIES=Yes, you can test some of those libraries.\n");
exit 0;
exit 1;
}
if(/^-f$/) {
$fast = 1;
Expand Down Expand Up @@ -141,7 +141,7 @@
}
else {
print("Unknown flag " . $_ . "!\n");
exit -1;
exit 1;
}
}

Expand Down Expand Up @@ -410,7 +410,7 @@ sub run_tests {
rmtree(@dirs);
}

if(@failed_tests && !$withxml) {
if(@failed_tests) {
exit 7;
}

0 comments on commit 576a904

Please sign in to comment.