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/absvti2_test.c b/test/Unit/absvti2_test.c
index 0a1db6a..8233c18 100644
--- a/test/Unit/absvti2_test.c
+++ b/test/Unit/absvti2_test.c
@@ -77,6 +77,8 @@
         if (test__absvti2(make_ti(((ti_int)rand() << 32) | rand(),
                                   ((ti_int)rand() << 32) | rand())))
             return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/adddf3vfp_test.c b/test/Unit/adddf3vfp_test.c
index 6ead234..5ad42f7 100644
--- a/test/Unit/adddf3vfp_test.c
+++ b/test/Unit/adddf3vfp_test.c
@@ -41,6 +41,8 @@
         return 1;
     if (test__adddf3vfp(0.0, -0.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/addsf3vfp_test.c b/test/Unit/addsf3vfp_test.c
index ddfe39f..95e057c 100644
--- a/test/Unit/addsf3vfp_test.c
+++ b/test/Unit/addsf3vfp_test.c
@@ -41,6 +41,8 @@
         return 1;
     if (test__addsf3vfp(0.0, -0.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/addvti3_test.c b/test/Unit/addvti3_test.c
index 33cfbc9..1cf066c 100644
--- a/test/Unit/addvti3_test.c
+++ b/test/Unit/addvti3_test.c
@@ -87,6 +87,8 @@
                       make_ti(0x7FFFFFFFFFFFFFFFLL, 0xFFFFFFFFFFFFFFFFLL)))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/ashlti3_test.c b/test/Unit/ashlti3_test.c
index 4b6c6ca..b9f4dcc 100644
--- a/test/Unit/ashlti3_test.c
+++ b/test/Unit/ashlti3_test.c
@@ -168,6 +168,8 @@
     if (test__ashlti3(make_ti(0xFEDCBA9876543215LL, 0xFEDCBA9876543215LL), 127,
                       make_ti(0x8000000000000000LL, 0x0000000000000000LL)))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/ashrti3_test.c b/test/Unit/ashrti3_test.c
index bfa34cb..3abee36 100644
--- a/test/Unit/ashrti3_test.c
+++ b/test/Unit/ashrti3_test.c
@@ -166,6 +166,8 @@
     if (test__ashrti3(make_ti(0xFEDCBA9876543215LL, 0xFEDCBA9876543215LL), 127,
                       make_ti(0xFFFFFFFFFFFFFFFFLL, 0xFFFFFFFFFFFFFFFFLL)))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/bswapdi2_test.c b/test/Unit/bswapdi2_test.c
index 634c2f9..2d830cf 100644
--- a/test/Unit/bswapdi2_test.c
+++ b/test/Unit/bswapdi2_test.c
@@ -37,6 +37,8 @@
         return 1;
     if (test__bswapdi2(0x0000000100000002LL, 0x0200000001000000LL))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/bswapsi2_test.c b/test/Unit/bswapsi2_test.c
index 4fb7560..4488a88 100644
--- a/test/Unit/bswapsi2_test.c
+++ b/test/Unit/bswapsi2_test.c
@@ -37,6 +37,8 @@
         return 1;
     if (test__bswapsi2(0x00000001, 0x01000000))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/clzti2_test.c b/test/Unit/clzti2_test.c
index 668c790..d2ca164 100644
--- a/test/Unit/clzti2_test.c
+++ b/test/Unit/clzti2_test.c
@@ -83,6 +83,8 @@
         return 1;
     if (test__clzti2(make_ti(0x8000000100000000LL, 0x8000000800000000LL), 0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/cmpti2_test.c b/test/Unit/cmpti2_test.c
index 2f5828e..4339e0a 100644
--- a/test/Unit/cmpti2_test.c
+++ b/test/Unit/cmpti2_test.c
@@ -105,6 +105,8 @@
     if (test__cmpti2(make_ti(2, 2), make_ti(2, 3), 0))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/ctzti2_test.c b/test/Unit/ctzti2_test.c
index 485a88d..c4934bd 100644
--- a/test/Unit/ctzti2_test.c
+++ b/test/Unit/ctzti2_test.c
@@ -76,6 +76,8 @@
         return 1;
     if (test__ctzti2(make_ti(0x8000000000000000LL, 0x0000000000000000LL), 127))
         return 1;
+#else
+    printf("skipped\n");
 #endif
 
    return 0;
diff --git a/test/Unit/divdf3vfp_test.c b/test/Unit/divdf3vfp_test.c
index ce5b258..e13822f 100644
--- a/test/Unit/divdf3vfp_test.c
+++ b/test/Unit/divdf3vfp_test.c
@@ -41,6 +41,8 @@
         return 1;
     if (test__divdf3vfp(10.0, -2.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/divsf3vfp_test.c b/test/Unit/divsf3vfp_test.c
index 6248ca0..8382558 100644
--- a/test/Unit/divsf3vfp_test.c
+++ b/test/Unit/divsf3vfp_test.c
@@ -41,6 +41,8 @@
         return 1;
     if (test__divsf3vfp(10.0, -2.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/divtc3_test.c b/test/Unit/divtc3_test.c
index 815c10b..7bb74d7 100644
--- a/test/Unit/divtc3_test.c
+++ b/test/Unit/divtc3_test.c
@@ -375,6 +375,8 @@
 	
 //	printf("No errors found.\n");
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/divti3_test.c b/test/Unit/divti3_test.c
index c9eceed..7c8e297 100644
--- a/test/Unit/divti3_test.c
+++ b/test/Unit/divti3_test.c
@@ -71,6 +71,8 @@
     if (test__divti3(make_ti(0x8000000000000000LL, 0), 2, make_ti(0xC000000000000000LL, 0)))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/divxc3_test.c b/test/Unit/divxc3_test.c
index c93db67..aa8a762 100644
--- a/test/Unit/divxc3_test.c
+++ b/test/Unit/divxc3_test.c
@@ -372,6 +372,8 @@
         }
     }
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/eqdf2vfp_test.c b/test/Unit/eqdf2vfp_test.c
index 6babd24..585bd08 100644
--- a/test/Unit/eqdf2vfp_test.c
+++ b/test/Unit/eqdf2vfp_test.c
@@ -48,6 +48,8 @@
         return 1;
     if (test__eqdf2vfp(1.0, HUGE_VAL))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/eqsf2vfp_test.c b/test/Unit/eqsf2vfp_test.c
index 4a292bc..b0eed94 100644
--- a/test/Unit/eqsf2vfp_test.c
+++ b/test/Unit/eqsf2vfp_test.c
@@ -44,6 +44,8 @@
         return 1;
     if (test__eqsf2vfp(1.0, HUGE_VALF))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/extebdsfdf2vfp_test.c b/test/Unit/extebdsfdf2vfp_test.c
index 9bbe572..3a009cf 100644
--- a/test/Unit/extebdsfdf2vfp_test.c
+++ b/test/Unit/extebdsfdf2vfp_test.c
@@ -41,6 +41,8 @@
         return 1;
     if (test__extendsfdf2vfp(3.1415926535))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/ffsti2_test.c b/test/Unit/ffsti2_test.c
index b679ab2..fcb5c27 100644
--- a/test/Unit/ffsti2_test.c
+++ b/test/Unit/ffsti2_test.c
@@ -76,6 +76,8 @@
     if (test__ffsti2(make_ti(0x8000000000000000uLL, 0), 128))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/fixdfsivfp_test.c b/test/Unit/fixdfsivfp_test.c
index a9f012c..c6102e2 100644
--- a/test/Unit/fixdfsivfp_test.c
+++ b/test/Unit/fixdfsivfp_test.c
@@ -43,6 +43,8 @@
         return 1;
     if (test__fixdfsivfp(-2147483648.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/fixdfti_test.c b/test/Unit/fixdfti_test.c
index 5ea3317..98a5628 100644
--- a/test/Unit/fixdfti_test.c
+++ b/test/Unit/fixdfti_test.c
@@ -116,6 +116,8 @@
     if (test__fixdfti(-0x1.FFFFFFFFFFFFEp+126, make_ti(0x8000000000000800LL, 0)))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/fixsfsivfp_test.c b/test/Unit/fixsfsivfp_test.c
index c101522..9abf5e8 100644
--- a/test/Unit/fixsfsivfp_test.c
+++ b/test/Unit/fixsfsivfp_test.c
@@ -45,6 +45,8 @@
         return 1;
     if (test__fixsfsivfp(65536.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/fixsfti_test.c b/test/Unit/fixsfti_test.c
index 325659e..5fdd005 100644
--- a/test/Unit/fixsfti_test.c
+++ b/test/Unit/fixsfti_test.c
@@ -104,6 +104,8 @@
     if (test__fixsfti(-0x1.FFFFFCp+126F, make_ti(0x8000010000000000LL, 0)))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/fixunsdfsivfp_test.c b/test/Unit/fixunsdfsivfp_test.c
index 991506f..3727cf7 100644
--- a/test/Unit/fixunsdfsivfp_test.c
+++ b/test/Unit/fixunsdfsivfp_test.c
@@ -43,6 +43,8 @@
         return 1;
     if (test__fixunsdfsivfp(65536.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/fixunssfsivfp_test.c b/test/Unit/fixunssfsivfp_test.c
index 08e0e8e..c8e45f4 100644
--- a/test/Unit/fixunssfsivfp_test.c
+++ b/test/Unit/fixunssfsivfp_test.c
@@ -43,6 +43,8 @@
         return 1;
     if (test__fixunssfsivfp(65536.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/fixunstfdi_test.c b/test/Unit/fixunstfdi_test.c
index a7cc9be..d0a5db7 100644
--- a/test/Unit/fixunstfdi_test.c
+++ b/test/Unit/fixunstfdi_test.c
@@ -114,6 +114,8 @@
     if (test__fixunstfdi(-0x1.FFFFFFFFFFFFFFF8p+62L, 0))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/fixunsxfdi_test.c b/test/Unit/fixunsxfdi_test.c
index 6d0f8d3..4308f6f 100644
--- a/test/Unit/fixunsxfdi_test.c
+++ b/test/Unit/fixunsxfdi_test.c
@@ -117,6 +117,8 @@
     if (test__fixunsxfdi(-0x1.FFFFFFFFFFFFFFF8p+62L, 0))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/fixunsxfti_test.c b/test/Unit/fixunsxfti_test.c
index f1f6087..0e3c842 100644
--- a/test/Unit/fixunsxfti_test.c
+++ b/test/Unit/fixunsxfti_test.c
@@ -134,6 +134,8 @@
     if (test__fixunsxfti(0x1.FFFFFFFFFFFFFFF8p+126L, make_ti(0x7FFFFFFFFFFFFFFELL, 0)))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/fixxfdi_test.c b/test/Unit/fixxfdi_test.c
index 1facd36..43ac0f8 100644
--- a/test/Unit/fixxfdi_test.c
+++ b/test/Unit/fixxfdi_test.c
@@ -108,6 +108,8 @@
     if (test__fixxfdi(-0x1.FFFFFFFFFFFFFFF8p+62L, 0x8000000000000002LL))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/fixxfti_test.c b/test/Unit/fixxfti_test.c
index 85c15a2..11296b0 100644
--- a/test/Unit/fixxfti_test.c
+++ b/test/Unit/fixxfti_test.c
@@ -139,6 +139,8 @@
     if (test__fixxfti(-0x1.FFFFFFFFFFFFFFFCp+126L, make_ti(0x8000000000000001LL,
                                                            0x0000000000000000LL)))
         return 1;
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/floatdixf_test.c b/test/Unit/floatdixf_test.c
index 8d049fd..3376664 100644
--- a/test/Unit/floatdixf_test.c
+++ b/test/Unit/floatdixf_test.c
@@ -137,6 +137,8 @@
     if (test__floatdixf(0x023479FD0E092DE0LL, 0x1.1A3CFE870496Fp+57))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/floatsidfvfp_test.c b/test/Unit/floatsidfvfp_test.c
index 79e87b3..e21ecda 100644
--- a/test/Unit/floatsidfvfp_test.c
+++ b/test/Unit/floatsidfvfp_test.c
@@ -43,6 +43,8 @@
         return 1;
     if (test__floatsidfvfp(0x80000000))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/floatsisfvfp_test.c b/test/Unit/floatsisfvfp_test.c
index 00f4ac2..d20905b 100644
--- a/test/Unit/floatsisfvfp_test.c
+++ b/test/Unit/floatsisfvfp_test.c
@@ -43,6 +43,8 @@
         return 1;
     if (test__floatsisfvfp(0x80000000))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/floattidf_test.c b/test/Unit/floattidf_test.c
index 4fcf272..cfe4084 100644
--- a/test/Unit/floattidf_test.c
+++ b/test/Unit/floattidf_test.c
@@ -173,6 +173,8 @@
         return 1;
     if (test__floattidf(make_ti(0x023479FD0E092DE0LL, 14), 0x1.1A3CFE870496Fp+121))
         return 1;
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/floattisf_test.c b/test/Unit/floattisf_test.c
index 7e43aa1..a83ec63 100644
--- a/test/Unit/floattisf_test.c
+++ b/test/Unit/floattisf_test.c
@@ -129,6 +129,8 @@
     if (test__floattisf(make_ti(0x0007FB72E4000000LL, 0), 0x1.FEDCB8p+114F))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/floattixf_test.c b/test/Unit/floattixf_test.c
index 5ba17f1..4a9dfb5 100644
--- a/test/Unit/floattixf_test.c
+++ b/test/Unit/floattixf_test.c
@@ -205,6 +205,8 @@
     if (test__floattixf(make_ti(0x0000123456789012LL, 0x34566FFFFFFFFFFFLL),
                         0x1.2345678901234566p+108L))
         return 1;
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/floatundixf_test.c b/test/Unit/floatundixf_test.c
index 43ac85f..1974fa0 100644
--- a/test/Unit/floatundixf_test.c
+++ b/test/Unit/floatundixf_test.c
@@ -138,6 +138,8 @@
     if (test__floatundixf(0x023479FD0E092DE0ULL, 0x1.1A3CFE870496Fp+57))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/floatunssidfvfp_test.c b/test/Unit/floatunssidfvfp_test.c
index fa174ef..4883af1 100644
--- a/test/Unit/floatunssidfvfp_test.c
+++ b/test/Unit/floatunssidfvfp_test.c
@@ -43,6 +43,8 @@
         return 1;
     if (test__floatunssidfvfp(0xFFFFFFFF))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/floatunssisfvfp_test.c b/test/Unit/floatunssisfvfp_test.c
index 099f4e3..917061a 100644
--- a/test/Unit/floatunssisfvfp_test.c
+++ b/test/Unit/floatunssisfvfp_test.c
@@ -43,6 +43,8 @@
         return 1;
     if (test__floatunssisfvfp(0xFFFFFFFF))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/floatuntidf_test.c b/test/Unit/floatuntidf_test.c
index 3b630f5..caad5d4 100644
--- a/test/Unit/floatuntidf_test.c
+++ b/test/Unit/floatuntidf_test.c
@@ -167,6 +167,8 @@
         return 1;
     if (test__floatuntidf(make_ti(0x023479FD0E092DE0LL, 14), 0x1.1A3CFE870496Fp+121))
         return 1;
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/floatuntisf_test.c b/test/Unit/floatuntisf_test.c
index e80403b..85c0727 100644
--- a/test/Unit/floatuntisf_test.c
+++ b/test/Unit/floatuntisf_test.c
@@ -158,6 +158,8 @@
                           0x1.FEDCBEp+76F))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/floatuntixf_test.c b/test/Unit/floatuntixf_test.c
index 9d7f974..fc7531a 100644
--- a/test/Unit/floatuntixf_test.c
+++ b/test/Unit/floatuntixf_test.c
@@ -212,6 +212,8 @@
     if (test__floatuntixf(make_ti(0x0000123456789012LL, 0x34566FFFFFFFFFFFLL),
                         0x1.2345678901234566p+108L))
         return 1;
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/gedf2vfp_test.c b/test/Unit/gedf2vfp_test.c
index 4731d3f..e280ce0 100644
--- a/test/Unit/gedf2vfp_test.c
+++ b/test/Unit/gedf2vfp_test.c
@@ -46,6 +46,8 @@
         return 1;
     if (test__gedf2vfp(1.0, HUGE_VAL))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/gesf2vfp_test.c b/test/Unit/gesf2vfp_test.c
index 9f1c756..aa53eb7 100644
--- a/test/Unit/gesf2vfp_test.c
+++ b/test/Unit/gesf2vfp_test.c
@@ -46,6 +46,8 @@
         return 1;
     if (test__gesf2vfp(1.0, HUGE_VALF))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/gtdf2vfp_test.c b/test/Unit/gtdf2vfp_test.c
index f282979..fd54e0b 100644
--- a/test/Unit/gtdf2vfp_test.c
+++ b/test/Unit/gtdf2vfp_test.c
@@ -46,6 +46,8 @@
         return 1;
     if (test__gtdf2vfp(1.0, HUGE_VALF))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/gtsf2vfp_test.c b/test/Unit/gtsf2vfp_test.c
index 03fb00e..2f4ad99 100644
--- a/test/Unit/gtsf2vfp_test.c
+++ b/test/Unit/gtsf2vfp_test.c
@@ -46,6 +46,8 @@
         return 1;
     if (test__gtsf2vfp(1.0, HUGE_VALF))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
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;
 }
diff --git a/test/Unit/lesf2vfp_test.c b/test/Unit/lesf2vfp_test.c
index dc5576b..b5c20f6 100644
--- a/test/Unit/lesf2vfp_test.c
+++ b/test/Unit/lesf2vfp_test.c
@@ -46,6 +46,8 @@
         return 1;
     if (test__lesf2vfp(1.0, HUGE_VALF))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/lshrti3_test.c b/test/Unit/lshrti3_test.c
index 093a6a2..f266b54 100644
--- a/test/Unit/lshrti3_test.c
+++ b/test/Unit/lshrti3_test.c
@@ -166,6 +166,8 @@
     if (test__lshrti3(make_ti(0xFEDCBA9876543215LL, 0xFEDCBA9876543215LL), 127,
                       make_ti(0x0000000000000000LL, 0x0000000000000001LL)))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/ltdf2vfp_test.c b/test/Unit/ltdf2vfp_test.c
index 5051e48..7319397 100644
--- a/test/Unit/ltdf2vfp_test.c
+++ b/test/Unit/ltdf2vfp_test.c
@@ -44,6 +44,8 @@
         return 1;
     if (test__ltdf2vfp(1.0, HUGE_VAL))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/ltsf2vfp_test.c b/test/Unit/ltsf2vfp_test.c
index 78d2c1a..2d920c9 100644
--- a/test/Unit/ltsf2vfp_test.c
+++ b/test/Unit/ltsf2vfp_test.c
@@ -46,6 +46,8 @@
         return 1;
     if (test__ltsf2vfp(1.0, HUGE_VALF))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/modti3_test.c b/test/Unit/modti3_test.c
index 3be0714..bd05c72 100644
--- a/test/Unit/modti3_test.c
+++ b/test/Unit/modti3_test.c
@@ -88,6 +88,8 @@
     if (test__modti3(make_ti(0x8000000000000000LL, 0), -3, -2))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/muldf3vfp_test.c b/test/Unit/muldf3vfp_test.c
index 7ca5559..73454bf 100644
--- a/test/Unit/muldf3vfp_test.c
+++ b/test/Unit/muldf3vfp_test.c
@@ -43,6 +43,8 @@
         return 1;
     if (test__muldf3vfp(0.0, -0.0))
 		return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/mulsf3vfp_test.c b/test/Unit/mulsf3vfp_test.c
index fcb124c..92cf1f1 100644
--- a/test/Unit/mulsf3vfp_test.c
+++ b/test/Unit/mulsf3vfp_test.c
@@ -43,6 +43,8 @@
         return 1;
     if (test__mulsf3vfp(0.0, -0.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/multc3_test.c b/test/Unit/multc3_test.c
index 40505f2..f8c66c0 100644
--- a/test/Unit/multc3_test.c
+++ b/test/Unit/multc3_test.c
@@ -367,7 +367,8 @@
                 return 1;
         }
     }
-
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/multi3_test.c b/test/Unit/multi3_test.c
index a4c0b7d..f8c6605 100644
--- a/test/Unit/multi3_test.c
+++ b/test/Unit/multi3_test.c
@@ -127,6 +127,8 @@
                      make_ti(0x0000000000000000LL, 0x00B504F333F9DE5BLL),
                      make_ti(0x7FFFFFFFFFFFF328LL, 0xDF915DA296E8A000LL)))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/mulvti3_test.c b/test/Unit/mulvti3_test.c
index dfe09ff..be1aa2d 100644
--- a/test/Unit/mulvti3_test.c
+++ b/test/Unit/mulvti3_test.c
@@ -253,6 +253,8 @@
 //                       make_ti(0x8000000000000000LL, 0x0000000000000000LL)))  // abort
 //         return 1;
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/mulxc3_test.c b/test/Unit/mulxc3_test.c
index 771d19a..4297c16 100644
--- a/test/Unit/mulxc3_test.c
+++ b/test/Unit/mulxc3_test.c
@@ -368,6 +368,8 @@
         }
     }
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/nedf2vfp_test.c b/test/Unit/nedf2vfp_test.c
index 8fdac1a..2c44043 100644
--- a/test/Unit/nedf2vfp_test.c
+++ b/test/Unit/nedf2vfp_test.c
@@ -44,6 +44,8 @@
         return 1;
     if (test__nedf2vfp(1.0, HUGE_VAL))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/negdf2vfp_test.c b/test/Unit/negdf2vfp_test.c
index 7bdf155..dc55428 100644
--- a/test/Unit/negdf2vfp_test.c
+++ b/test/Unit/negdf2vfp_test.c
@@ -41,6 +41,8 @@
         return 1;
     if (test__negdf2vfp(-1.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/negsf2vfp_test.c b/test/Unit/negsf2vfp_test.c
index 419b32d..ef54cee 100644
--- a/test/Unit/negsf2vfp_test.c
+++ b/test/Unit/negsf2vfp_test.c
@@ -41,6 +41,8 @@
         return 1;
     if (test__negsf2vfp(-1.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/negti2_test.c b/test/Unit/negti2_test.c
index 6ecc862..1945acc 100644
--- a/test/Unit/negti2_test.c
+++ b/test/Unit/negti2_test.c
@@ -120,6 +120,8 @@
                      make_ti(0x8000000000000000LL, 0x0000000000000001LL)))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/negvti2_test.c b/test/Unit/negvti2_test.c
index 1dc904e..7728409 100644
--- a/test/Unit/negvti2_test.c
+++ b/test/Unit/negvti2_test.c
@@ -102,6 +102,8 @@
     if (test__negvti2(make_ti(0x7FFFFFFFFFFFFFFFLL, 0xFFFFFFFFFFFFFFFFLL)))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/nesf2vfp_test.c b/test/Unit/nesf2vfp_test.c
index 507b42e..c085bf8 100644
--- a/test/Unit/nesf2vfp_test.c
+++ b/test/Unit/nesf2vfp_test.c
@@ -44,6 +44,8 @@
         return 1;
     if (test__nesf2vfp(1.0, HUGE_VALF))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/parityti2_test.c b/test/Unit/parityti2_test.c
index c2f8d3d..ac67b35 100644
--- a/test/Unit/parityti2_test.c
+++ b/test/Unit/parityti2_test.c
@@ -57,6 +57,8 @@
                             ((ti_int)rand() << 32) + rand()))
             return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/popcountti2_test.c b/test/Unit/popcountti2_test.c
index 53fee3b..1b94a0c 100644
--- a/test/Unit/popcountti2_test.c
+++ b/test/Unit/popcountti2_test.c
@@ -75,6 +75,8 @@
                               ((ti_int)rand() << 32) | rand()))
             return 1;
 
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/powitf2_test.c b/test/Unit/powitf2_test.c
index ca690fd..817cb11 100644
--- a/test/Unit/powitf2_test.c
+++ b/test/Unit/powitf2_test.c
@@ -225,6 +225,8 @@
     if (test__powitf2(-2, -31, -1/2147483648.))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/powixf2_test.c b/test/Unit/powixf2_test.c
index 67d2463..201870b 100644
--- a/test/Unit/powixf2_test.c
+++ b/test/Unit/powixf2_test.c
@@ -225,6 +225,8 @@
     if (test__powixf2(-2, -31, -1/2147483648.))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/subdf3vfp_test.c b/test/Unit/subdf3vfp_test.c
index d1517ec..86d6f2f 100644
--- a/test/Unit/subdf3vfp_test.c
+++ b/test/Unit/subdf3vfp_test.c
@@ -41,6 +41,8 @@
         return 1;
     if (test__subdf3vfp(0.0, -0.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/subsf3vfp_test.c b/test/Unit/subsf3vfp_test.c
index aabd01d..223e7f8 100644
--- a/test/Unit/subsf3vfp_test.c
+++ b/test/Unit/subsf3vfp_test.c
@@ -41,6 +41,8 @@
         return 1;
     if (test__subsf3vfp(0.0, -0.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/subvti3_test.c b/test/Unit/subvti3_test.c
index a579a1f..6176bdf 100644
--- a/test/Unit/subvti3_test.c
+++ b/test/Unit/subvti3_test.c
@@ -73,6 +73,8 @@
     if (test__subvti3(-1, make_ti(0x7FFFFFFFFFFFFFFFLL, 0xFFFFFFFFFFFFFFFFLL)))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/trampoline_setup_test.c b/test/Unit/trampoline_setup_test.c
index c6dbe70..dc30fb6 100644
--- a/test/Unit/trampoline_setup_test.c
+++ b/test/Unit/trampoline_setup_test.c
@@ -57,7 +57,8 @@
 #else
 
 int main() {
-  return 0;
+    printf("skipped\n");
+    return 0;
 }
 
 #endif
diff --git a/test/Unit/truncdfsf2vfp_test.c b/test/Unit/truncdfsf2vfp_test.c
index 4a44dc7..afc7868 100644
--- a/test/Unit/truncdfsf2vfp_test.c
+++ b/test/Unit/truncdfsf2vfp_test.c
@@ -43,6 +43,8 @@
         return 1;
     if (test__truncdfsf2vfp(123.456))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/ucmpti2_test.c b/test/Unit/ucmpti2_test.c
index d17fbb2..55f820b 100644
--- a/test/Unit/ucmpti2_test.c
+++ b/test/Unit/ucmpti2_test.c
@@ -109,6 +109,8 @@
     if (test__ucmpti2(make_tu(0xFFFFFFFFFFFFFFFFuLL, 0xFFFFFFFFFFFFFFFFuLL),
                       make_tu(0xFFFFFFFFFFFFFFFFuLL, 0xFFFFFFFFFFFFFFFFuLL), 1))
         return 1;
+#else
+    printf("skipped\n");
 #endif
    return 0;
 }
diff --git a/test/Unit/udivmodti4_test.c b/test/Unit/udivmodti4_test.c
index 620929a..e0cae35 100644
--- a/test/Unit/udivmodti4_test.c
+++ b/test/Unit/udivmodti4_test.c
@@ -65346,6 +65346,8 @@
         if (test__udivmodti4(tests[i][0], tests[i][1], tests[i][2], tests[i][3]))
             return 1;
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/udivti3_test.c b/test/Unit/udivti3_test.c
index a94739a..09e0e1c 100644
--- a/test/Unit/udivti3_test.c
+++ b/test/Unit/udivti3_test.c
@@ -60,6 +60,8 @@
                       make_tu(0x7FFFFFFFFFFFFFFFuLL, 0xFFFFFFFFFFFFFFFFuLL)))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/umodti3_test.c b/test/Unit/umodti3_test.c
index d75a1b3..5eac2d8 100644
--- a/test/Unit/umodti3_test.c
+++ b/test/Unit/umodti3_test.c
@@ -58,6 +58,8 @@
                       2, 0x1uLL))
         return 1;
 
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/unorddf2vfp_test.c b/test/Unit/unorddf2vfp_test.c
index 1031138..d49d567 100644
--- a/test/Unit/unorddf2vfp_test.c
+++ b/test/Unit/unorddf2vfp_test.c
@@ -42,6 +42,8 @@
         return 1;
     if (test__unorddf2vfp(1.0, 1.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }
diff --git a/test/Unit/unordsf2vfp_test.c b/test/Unit/unordsf2vfp_test.c
index dedd7ec..3cadc81 100644
--- a/test/Unit/unordsf2vfp_test.c
+++ b/test/Unit/unordsf2vfp_test.c
@@ -42,6 +42,8 @@
         return 1;
     if (test__unordsf2vfp(1.0, 1.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }