summaryrefslogtreecommitdiff
path: root/test/Unit/gtsf2vfp_test.c
diff options
context:
space:
mode:
authorJoerg Sonnenberger <joerg@bec.de>2011-05-29 21:43:29 +0000
committerJoerg Sonnenberger <joerg@bec.de>2011-05-29 21:43:29 +0000
commit7482815716cd9b87931d82dca7298fc3c707229f (patch)
tree51db692a6c937b68c7180d996af6bb7952b4b55d /test/Unit/gtsf2vfp_test.c
parent96051e1bd0e4c60a65e8c059a719a4a72b229247 (diff)
downloadcompiler-rt-7482815716cd9b87931d82dca7298fc3c707229f.tar.gz
compiler-rt-7482815716cd9b87931d82dca7298fc3c707229f.tar.bz2
compiler-rt-7482815716cd9b87931d82dca7298fc3c707229f.tar.xz
If a test case is not compiled on a specific platform, print "skipped"
to stdout. This helps identifying missing coverage on a given platform. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@132300 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Unit/gtsf2vfp_test.c')
-rw-r--r--test/Unit/gtsf2vfp_test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Unit/gtsf2vfp_test.c b/test/Unit/gtsf2vfp_test.c
index 03fb00e1..2f4ad99a 100644
--- a/test/Unit/gtsf2vfp_test.c
+++ b/test/Unit/gtsf2vfp_test.c
@@ -46,6 +46,8 @@ int main()
return 1;
if (test__gtsf2vfp(1.0, HUGE_VALF))
return 1;
+#else
+ printf("skipped\n");
#endif
return 0;
}