diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-18 02:22:39 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-18 02:22:43 +0200 |
commit | 78274b19f163547ecb664e8254738d680212ffb6 (patch) | |
tree | 4203020228a450f397f8fbf2598c5adaadf809fe /tests/checkasm/checkasm.c | |
parent | c0894e62881480f2fdedc95a41101f1add03d419 (diff) | |
parent | 6cc4d3e9a982e926494f4b919d9733fe29774acf (diff) | |
download | ffmpeg-78274b19f163547ecb664e8254738d680212ffb6.tar.gz |
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>
Diffstat (limited to 'tests/checkasm/checkasm.c')
-rw-r--r-- | tests/checkasm/checkasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/checkasm.c b/tests/checkasm/checkasm.c index 89d238acd2..d1e4de850c 100644 --- a/tests/checkasm/checkasm.c +++ b/tests/checkasm/checkasm.c @@ -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)) { |