diff options
author | Joerg Sonnenberger <joerg@bec.de> | 2011-05-29 21:43:29 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@bec.de> | 2011-05-29 21:43:29 +0000 |
commit | d9bcddd6b906525a2af06a6d66d1b3f73199433b (patch) | |
tree | ade7e83aa5f8b54eb28b30539cd3922d6aca597b /compiler-rt/test/Unit/ctzti2_test.c | |
parent | ca6a4d8940769508d16e81ab387935bd5dd017dd (diff) | |
download | bcm5719-llvm-d9bcddd6b906525a2af06a6d66d1b3f73199433b.tar.gz bcm5719-llvm-d9bcddd6b906525a2af06a6d66d1b3f73199433b.zip |
If a test case is not compiled on a specific platform, print "skipped"
to stdout. This helps identifying missing coverage on a given platform.
llvm-svn: 132300
Diffstat (limited to 'compiler-rt/test/Unit/ctzti2_test.c')
-rw-r--r-- | compiler-rt/test/Unit/ctzti2_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler-rt/test/Unit/ctzti2_test.c b/compiler-rt/test/Unit/ctzti2_test.c index 485a88d70a9..c4934bd254b 100644 --- a/compiler-rt/test/Unit/ctzti2_test.c +++ b/compiler-rt/test/Unit/ctzti2_test.c @@ -76,6 +76,8 @@ int main() return 1; if (test__ctzti2(make_ti(0x8000000000000000LL, 0x0000000000000000LL), 127)) return 1; +#else + printf("skipped\n"); #endif return 0; |