Navigation Menu

Skip to content

Commit

Permalink
log when we don't find any tests to run
Browse files Browse the repository at this point in the history
  • Loading branch information
jlipps committed Sep 25, 2012
1 parent d8b1276 commit 5a8ada3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bin/paraunit
Expand Up @@ -229,6 +229,12 @@ function main($argv)
}
}

if (!count($all_tests)) {
echo "Couldn't find any tests in the files paraunit collected. Here's what they were:\n\n";
print_r($files);
exit(1);
}

runTestSets($all_tests, $processes);
}

Expand Down

0 comments on commit 5a8ada3

Please sign in to comment.