summaryrefslogtreecommitdiff
path: root/test/Unit/addsf3vfp_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/addsf3vfp_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/addsf3vfp_test.c')
-rw-r--r--test/Unit/addsf3vfp_test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Unit/addsf3vfp_test.c b/test/Unit/addsf3vfp_test.c
index ddfe39f9..95e057c3 100644
--- a/test/Unit/addsf3vfp_test.c
+++ b/test/Unit/addsf3vfp_test.c
@@ -41,6 +41,8 @@ int main()
return 1;
if (test__addsf3vfp(0.0, -0.0))
return 1;
+#else
+ printf("skipped\n");
#endif
return 0;
}