Merge commit '6cc4d3e9a982e926494f4b919d9733fe29774acf'

* commit '6cc4d3e9a982e926494f4b919d9733fe29774acf':
  checkasm: exit with status 0 instead of 1 if there are no tests to perform

Merged-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2015-07-18 02:22:39 +02:00
commit 78274b19f1
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ int main(int argc, char *argv[])
if (!tests[0] || !cpus[0].flag) {
fprintf(stderr, "checkasm: no tests to perform\n");
return 1;
return 0;
}
if (argc > 1 && !strncmp(argv[1], "--bench", 7)) {