commit | d9bcddd6b906525a2af06a6d66d1b3f73199433b | [log] [tgz] |
---|---|---|
author | Joerg Sonnenberger <joerg@bec.de> | Sun May 29 21:43:29 2011 +0000 |
committer | Joerg Sonnenberger <joerg@bec.de> | Sun May 29 21:43:29 2011 +0000 |
tree | ade7e83aa5f8b54eb28b30539cd3922d6aca597b | |
parent | ca6a4d8940769508d16e81ab387935bd5dd017dd [diff] [blame] |
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
diff --git a/compiler-rt/test/Unit/parityti2_test.c b/compiler-rt/test/Unit/parityti2_test.c index c2f8d3d..ac67b35 100644 --- a/compiler-rt/test/Unit/parityti2_test.c +++ b/compiler-rt/test/Unit/parityti2_test.c
@@ -57,6 +57,8 @@ ((ti_int)rand() << 32) + rand())) return 1; +#else + printf("skipped\n"); #endif return 0; }