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
diff --git a/test/Unit/ledf2vfp_test.c b/test/Unit/ledf2vfp_test.c
index e7ed522..5683590 100644
--- a/test/Unit/ledf2vfp_test.c
+++ b/test/Unit/ledf2vfp_test.c
@@ -46,6 +46,8 @@
         return 1;
     if (test__ledf2vfp(1.0, HUGE_VAL))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }