diff options
author | Joerg Sonnenberger <joerg@bec.de> | 2011-05-29 21:43:29 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@bec.de> | 2011-05-29 21:43:29 +0000 |
commit | d9bcddd6b906525a2af06a6d66d1b3f73199433b (patch) | |
tree | ade7e83aa5f8b54eb28b30539cd3922d6aca597b /compiler-rt | |
parent | ca6a4d8940769508d16e81ab387935bd5dd017dd (diff) | |
download | bcm5719-llvm-d9bcddd6b906525a2af06a6d66d1b3f73199433b.tar.gz bcm5719-llvm-d9bcddd6b906525a2af06a6d66d1b3f73199433b.zip |
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
Diffstat (limited to 'compiler-rt')
80 files changed, 160 insertions, 2 deletions
diff --git a/compiler-rt/test/Unit/absvti2_test.c b/compiler-rt/test/Unit/absvti2_test.c index 0a1db6a5650..8233c18ff09 100644 --- a/compiler-rt/test/Unit/absvti2_test.c +++ b/compiler-rt/test/Unit/absvti2_test.c @@ -77,6 +77,8 @@ int main() 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/compiler-rt/test/Unit/adddf3vfp_test.c b/compiler-rt/test/Unit/adddf3vfp_test.c index 6ead2341abf..5ad42f7b3a6 100644 --- a/compiler-rt/test/Unit/adddf3vfp_test.c +++ b/compiler-rt/test/Unit/adddf3vfp_test.c @@ -41,6 +41,8 @@ int main() return 1; if (test__adddf3vfp(0.0, -0.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/addsf3vfp_test.c b/compiler-rt/test/Unit/addsf3vfp_test.c index ddfe39f9627..95e057c3630 100644 --- a/compiler-rt/test/Unit/addsf3vfp_test.c +++ b/compiler-rt/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; } diff --git a/compiler-rt/test/Unit/addvti3_test.c b/compiler-rt/test/Unit/addvti3_test.c index 33cfbc98529..1cf066c4891 100644 --- a/compiler-rt/test/Unit/addvti3_test.c +++ b/compiler-rt/test/Unit/addvti3_test.c @@ -87,6 +87,8 @@ int main() make_ti(0x7FFFFFFFFFFFFFFFLL, 0xFFFFFFFFFFFFFFFFLL))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/ashlti3_test.c b/compiler-rt/test/Unit/ashlti3_test.c index 4b6c6ca0164..b9f4dcc0a8c 100644 --- a/compiler-rt/test/Unit/ashlti3_test.c +++ b/compiler-rt/test/Unit/ashlti3_test.c @@ -168,6 +168,8 @@ int main() if (test__ashlti3(make_ti(0xFEDCBA9876543215LL, 0xFEDCBA9876543215LL), 127, make_ti(0x8000000000000000LL, 0x0000000000000000LL))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/ashrti3_test.c b/compiler-rt/test/Unit/ashrti3_test.c index bfa34cbe967..3abee36b6b7 100644 --- a/compiler-rt/test/Unit/ashrti3_test.c +++ b/compiler-rt/test/Unit/ashrti3_test.c @@ -166,6 +166,8 @@ int main() if (test__ashrti3(make_ti(0xFEDCBA9876543215LL, 0xFEDCBA9876543215LL), 127, make_ti(0xFFFFFFFFFFFFFFFFLL, 0xFFFFFFFFFFFFFFFFLL))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/bswapdi2_test.c b/compiler-rt/test/Unit/bswapdi2_test.c index 634c2f9b1d4..2d830cf5e41 100644 --- a/compiler-rt/test/Unit/bswapdi2_test.c +++ b/compiler-rt/test/Unit/bswapdi2_test.c @@ -37,6 +37,8 @@ int main() return 1; if (test__bswapdi2(0x0000000100000002LL, 0x0200000001000000LL)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/bswapsi2_test.c b/compiler-rt/test/Unit/bswapsi2_test.c index 4fb756008b4..4488a888e1e 100644 --- a/compiler-rt/test/Unit/bswapsi2_test.c +++ b/compiler-rt/test/Unit/bswapsi2_test.c @@ -37,6 +37,8 @@ int main() return 1; if (test__bswapsi2(0x00000001, 0x01000000)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/clzti2_test.c b/compiler-rt/test/Unit/clzti2_test.c index 668c790b4d5..d2ca1645dd1 100644 --- a/compiler-rt/test/Unit/clzti2_test.c +++ b/compiler-rt/test/Unit/clzti2_test.c @@ -83,6 +83,8 @@ int main() return 1; if (test__clzti2(make_ti(0x8000000100000000LL, 0x8000000800000000LL), 0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/cmpti2_test.c b/compiler-rt/test/Unit/cmpti2_test.c index 2f5828ededa..4339e0abb5e 100644 --- a/compiler-rt/test/Unit/cmpti2_test.c +++ b/compiler-rt/test/Unit/cmpti2_test.c @@ -105,6 +105,8 @@ int main() if (test__cmpti2(make_ti(2, 2), make_ti(2, 3), 0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/ctzti2_test.c b/compiler-rt/test/Unit/ctzti2_test.c index 485a88d70a9..c4934bd254b 100644 --- a/compiler-rt/test/Unit/ctzti2_test.c +++ b/compiler-rt/test/Unit/ctzti2_test.c @@ -76,6 +76,8 @@ int main() return 1; if (test__ctzti2(make_ti(0x8000000000000000LL, 0x0000000000000000LL), 127)) return 1; +#else + printf("skipped\n"); #endif return 0; diff --git a/compiler-rt/test/Unit/divdf3vfp_test.c b/compiler-rt/test/Unit/divdf3vfp_test.c index ce5b2585811..e13822ffcaa 100644 --- a/compiler-rt/test/Unit/divdf3vfp_test.c +++ b/compiler-rt/test/Unit/divdf3vfp_test.c @@ -41,6 +41,8 @@ int main() return 1; if (test__divdf3vfp(10.0, -2.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/divsf3vfp_test.c b/compiler-rt/test/Unit/divsf3vfp_test.c index 6248ca0c66e..8382558412c 100644 --- a/compiler-rt/test/Unit/divsf3vfp_test.c +++ b/compiler-rt/test/Unit/divsf3vfp_test.c @@ -41,6 +41,8 @@ int main() return 1; if (test__divsf3vfp(10.0, -2.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/divtc3_test.c b/compiler-rt/test/Unit/divtc3_test.c index 815c10bcd06..7bb74d75514 100644 --- a/compiler-rt/test/Unit/divtc3_test.c +++ b/compiler-rt/test/Unit/divtc3_test.c @@ -375,6 +375,8 @@ int main() // printf("No errors found.\n"); +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/divti3_test.c b/compiler-rt/test/Unit/divti3_test.c index c9eceedd40c..7c8e2970fa6 100644 --- a/compiler-rt/test/Unit/divti3_test.c +++ b/compiler-rt/test/Unit/divti3_test.c @@ -71,6 +71,8 @@ int main() if (test__divti3(make_ti(0x8000000000000000LL, 0), 2, make_ti(0xC000000000000000LL, 0))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/divxc3_test.c b/compiler-rt/test/Unit/divxc3_test.c index c93db67d875..aa8a7625d13 100644 --- a/compiler-rt/test/Unit/divxc3_test.c +++ b/compiler-rt/test/Unit/divxc3_test.c @@ -372,6 +372,8 @@ int main() } } +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/eqdf2vfp_test.c b/compiler-rt/test/Unit/eqdf2vfp_test.c index 6babd249858..585bd08e978 100644 --- a/compiler-rt/test/Unit/eqdf2vfp_test.c +++ b/compiler-rt/test/Unit/eqdf2vfp_test.c @@ -48,6 +48,8 @@ int main() return 1; if (test__eqdf2vfp(1.0, HUGE_VAL)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/eqsf2vfp_test.c b/compiler-rt/test/Unit/eqsf2vfp_test.c index 4a292bc2151..b0eed9402a3 100644 --- a/compiler-rt/test/Unit/eqsf2vfp_test.c +++ b/compiler-rt/test/Unit/eqsf2vfp_test.c @@ -44,6 +44,8 @@ int main() return 1; if (test__eqsf2vfp(1.0, HUGE_VALF)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/extebdsfdf2vfp_test.c b/compiler-rt/test/Unit/extebdsfdf2vfp_test.c index 9bbe5729ed3..3a009cf2d7f 100644 --- a/compiler-rt/test/Unit/extebdsfdf2vfp_test.c +++ b/compiler-rt/test/Unit/extebdsfdf2vfp_test.c @@ -41,6 +41,8 @@ int main() return 1; if (test__extendsfdf2vfp(3.1415926535)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/ffsti2_test.c b/compiler-rt/test/Unit/ffsti2_test.c index b679ab20fe7..fcb5c2725f2 100644 --- a/compiler-rt/test/Unit/ffsti2_test.c +++ b/compiler-rt/test/Unit/ffsti2_test.c @@ -76,6 +76,8 @@ int main() if (test__ffsti2(make_ti(0x8000000000000000uLL, 0), 128)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/fixdfsivfp_test.c b/compiler-rt/test/Unit/fixdfsivfp_test.c index a9f012c4441..c6102e274ee 100644 --- a/compiler-rt/test/Unit/fixdfsivfp_test.c +++ b/compiler-rt/test/Unit/fixdfsivfp_test.c @@ -43,6 +43,8 @@ int main() return 1; if (test__fixdfsivfp(-2147483648.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/fixdfti_test.c b/compiler-rt/test/Unit/fixdfti_test.c index 5ea33172d68..98a5628eddd 100644 --- a/compiler-rt/test/Unit/fixdfti_test.c +++ b/compiler-rt/test/Unit/fixdfti_test.c @@ -116,6 +116,8 @@ int main() if (test__fixdfti(-0x1.FFFFFFFFFFFFEp+126, make_ti(0x8000000000000800LL, 0))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/fixsfsivfp_test.c b/compiler-rt/test/Unit/fixsfsivfp_test.c index c10152255b4..9abf5e85647 100644 --- a/compiler-rt/test/Unit/fixsfsivfp_test.c +++ b/compiler-rt/test/Unit/fixsfsivfp_test.c @@ -45,6 +45,8 @@ int main() return 1; if (test__fixsfsivfp(65536.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/fixsfti_test.c b/compiler-rt/test/Unit/fixsfti_test.c index 325659e0eb9..5fdd0057852 100644 --- a/compiler-rt/test/Unit/fixsfti_test.c +++ b/compiler-rt/test/Unit/fixsfti_test.c @@ -104,6 +104,8 @@ int main() if (test__fixsfti(-0x1.FFFFFCp+126F, make_ti(0x8000010000000000LL, 0))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/fixunsdfsivfp_test.c b/compiler-rt/test/Unit/fixunsdfsivfp_test.c index 991506f8ac1..3727cf7b02f 100644 --- a/compiler-rt/test/Unit/fixunsdfsivfp_test.c +++ b/compiler-rt/test/Unit/fixunsdfsivfp_test.c @@ -43,6 +43,8 @@ int main() return 1; if (test__fixunsdfsivfp(65536.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/fixunssfsivfp_test.c b/compiler-rt/test/Unit/fixunssfsivfp_test.c index 08e0e8ee9bc..c8e45f408b6 100644 --- a/compiler-rt/test/Unit/fixunssfsivfp_test.c +++ b/compiler-rt/test/Unit/fixunssfsivfp_test.c @@ -43,6 +43,8 @@ int main() return 1; if (test__fixunssfsivfp(65536.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/fixunstfdi_test.c b/compiler-rt/test/Unit/fixunstfdi_test.c index a7cc9be2fcf..d0a5db7a9c9 100644 --- a/compiler-rt/test/Unit/fixunstfdi_test.c +++ b/compiler-rt/test/Unit/fixunstfdi_test.c @@ -114,6 +114,8 @@ int main() if (test__fixunstfdi(-0x1.FFFFFFFFFFFFFFF8p+62L, 0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/fixunsxfdi_test.c b/compiler-rt/test/Unit/fixunsxfdi_test.c index 6d0f8d3fb65..4308f6f4ef1 100644 --- a/compiler-rt/test/Unit/fixunsxfdi_test.c +++ b/compiler-rt/test/Unit/fixunsxfdi_test.c @@ -117,6 +117,8 @@ int main() if (test__fixunsxfdi(-0x1.FFFFFFFFFFFFFFF8p+62L, 0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/fixunsxfti_test.c b/compiler-rt/test/Unit/fixunsxfti_test.c index f1f6087009d..0e3c842bc02 100644 --- a/compiler-rt/test/Unit/fixunsxfti_test.c +++ b/compiler-rt/test/Unit/fixunsxfti_test.c @@ -134,6 +134,8 @@ int main() if (test__fixunsxfti(0x1.FFFFFFFFFFFFFFF8p+126L, make_ti(0x7FFFFFFFFFFFFFFELL, 0))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/fixxfdi_test.c b/compiler-rt/test/Unit/fixxfdi_test.c index 1facd36494d..43ac0f8aaa3 100644 --- a/compiler-rt/test/Unit/fixxfdi_test.c +++ b/compiler-rt/test/Unit/fixxfdi_test.c @@ -108,6 +108,8 @@ int main() if (test__fixxfdi(-0x1.FFFFFFFFFFFFFFF8p+62L, 0x8000000000000002LL)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/fixxfti_test.c b/compiler-rt/test/Unit/fixxfti_test.c index 85c15a20c2c..11296b03687 100644 --- a/compiler-rt/test/Unit/fixxfti_test.c +++ b/compiler-rt/test/Unit/fixxfti_test.c @@ -139,6 +139,8 @@ int main() if (test__fixxfti(-0x1.FFFFFFFFFFFFFFFCp+126L, make_ti(0x8000000000000001LL, 0x0000000000000000LL))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floatdixf_test.c b/compiler-rt/test/Unit/floatdixf_test.c index 8d049fdb898..33766642631 100644 --- a/compiler-rt/test/Unit/floatdixf_test.c +++ b/compiler-rt/test/Unit/floatdixf_test.c @@ -137,6 +137,8 @@ int main() if (test__floatdixf(0x023479FD0E092DE0LL, 0x1.1A3CFE870496Fp+57)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floatsidfvfp_test.c b/compiler-rt/test/Unit/floatsidfvfp_test.c index 79e87b3211c..e21ecda5994 100644 --- a/compiler-rt/test/Unit/floatsidfvfp_test.c +++ b/compiler-rt/test/Unit/floatsidfvfp_test.c @@ -43,6 +43,8 @@ int main() return 1; if (test__floatsidfvfp(0x80000000)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floatsisfvfp_test.c b/compiler-rt/test/Unit/floatsisfvfp_test.c index 00f4ac298d3..d20905bd91e 100644 --- a/compiler-rt/test/Unit/floatsisfvfp_test.c +++ b/compiler-rt/test/Unit/floatsisfvfp_test.c @@ -43,6 +43,8 @@ int main() return 1; if (test__floatsisfvfp(0x80000000)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floattidf_test.c b/compiler-rt/test/Unit/floattidf_test.c index 4fcf272d828..cfe40849960 100644 --- a/compiler-rt/test/Unit/floattidf_test.c +++ b/compiler-rt/test/Unit/floattidf_test.c @@ -173,6 +173,8 @@ int main() return 1; if (test__floattidf(make_ti(0x023479FD0E092DE0LL, 14), 0x1.1A3CFE870496Fp+121)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floattisf_test.c b/compiler-rt/test/Unit/floattisf_test.c index 7e43aa10523..a83ec63a25c 100644 --- a/compiler-rt/test/Unit/floattisf_test.c +++ b/compiler-rt/test/Unit/floattisf_test.c @@ -129,6 +129,8 @@ int main() if (test__floattisf(make_ti(0x0007FB72E4000000LL, 0), 0x1.FEDCB8p+114F)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floattixf_test.c b/compiler-rt/test/Unit/floattixf_test.c index 5ba17f1beb2..4a9dfb56ac9 100644 --- a/compiler-rt/test/Unit/floattixf_test.c +++ b/compiler-rt/test/Unit/floattixf_test.c @@ -205,6 +205,8 @@ int main() if (test__floattixf(make_ti(0x0000123456789012LL, 0x34566FFFFFFFFFFFLL), 0x1.2345678901234566p+108L)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floatundixf_test.c b/compiler-rt/test/Unit/floatundixf_test.c index 43ac85f7a80..1974fa01012 100644 --- a/compiler-rt/test/Unit/floatundixf_test.c +++ b/compiler-rt/test/Unit/floatundixf_test.c @@ -138,6 +138,8 @@ int main() if (test__floatundixf(0x023479FD0E092DE0ULL, 0x1.1A3CFE870496Fp+57)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floatunssidfvfp_test.c b/compiler-rt/test/Unit/floatunssidfvfp_test.c index fa174ef18ad..4883af1cf5f 100644 --- a/compiler-rt/test/Unit/floatunssidfvfp_test.c +++ b/compiler-rt/test/Unit/floatunssidfvfp_test.c @@ -43,6 +43,8 @@ int main() return 1; if (test__floatunssidfvfp(0xFFFFFFFF)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floatunssisfvfp_test.c b/compiler-rt/test/Unit/floatunssisfvfp_test.c index 099f4e39a3e..917061a91b1 100644 --- a/compiler-rt/test/Unit/floatunssisfvfp_test.c +++ b/compiler-rt/test/Unit/floatunssisfvfp_test.c @@ -43,6 +43,8 @@ int main() return 1; if (test__floatunssisfvfp(0xFFFFFFFF)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floatuntidf_test.c b/compiler-rt/test/Unit/floatuntidf_test.c index 3b630f5c76a..caad5d435e1 100644 --- a/compiler-rt/test/Unit/floatuntidf_test.c +++ b/compiler-rt/test/Unit/floatuntidf_test.c @@ -167,6 +167,8 @@ int main() return 1; if (test__floatuntidf(make_ti(0x023479FD0E092DE0LL, 14), 0x1.1A3CFE870496Fp+121)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floatuntisf_test.c b/compiler-rt/test/Unit/floatuntisf_test.c index e80403b4991..85c0727ce13 100644 --- a/compiler-rt/test/Unit/floatuntisf_test.c +++ b/compiler-rt/test/Unit/floatuntisf_test.c @@ -158,6 +158,8 @@ int main() 0x1.FEDCBEp+76F)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/floatuntixf_test.c b/compiler-rt/test/Unit/floatuntixf_test.c index 9d7f974f06c..fc7531a9c82 100644 --- a/compiler-rt/test/Unit/floatuntixf_test.c +++ b/compiler-rt/test/Unit/floatuntixf_test.c @@ -212,6 +212,8 @@ int main() if (test__floatuntixf(make_ti(0x0000123456789012LL, 0x34566FFFFFFFFFFFLL), 0x1.2345678901234566p+108L)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/gedf2vfp_test.c b/compiler-rt/test/Unit/gedf2vfp_test.c index 4731d3ffc3c..e280ce0780a 100644 --- a/compiler-rt/test/Unit/gedf2vfp_test.c +++ b/compiler-rt/test/Unit/gedf2vfp_test.c @@ -46,6 +46,8 @@ int main() return 1; if (test__gedf2vfp(1.0, HUGE_VAL)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/gesf2vfp_test.c b/compiler-rt/test/Unit/gesf2vfp_test.c index 9f1c7568c0a..aa53eb73997 100644 --- a/compiler-rt/test/Unit/gesf2vfp_test.c +++ b/compiler-rt/test/Unit/gesf2vfp_test.c @@ -46,6 +46,8 @@ int main() return 1; if (test__gesf2vfp(1.0, HUGE_VALF)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/gtdf2vfp_test.c b/compiler-rt/test/Unit/gtdf2vfp_test.c index f28297974f1..fd54e0b4e59 100644 --- a/compiler-rt/test/Unit/gtdf2vfp_test.c +++ b/compiler-rt/test/Unit/gtdf2vfp_test.c @@ -46,6 +46,8 @@ int main() return 1; if (test__gtdf2vfp(1.0, HUGE_VALF)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/gtsf2vfp_test.c b/compiler-rt/test/Unit/gtsf2vfp_test.c index 03fb00e1993..2f4ad99a63d 100644 --- a/compiler-rt/test/Unit/gtsf2vfp_test.c +++ b/compiler-rt/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; } diff --git a/compiler-rt/test/Unit/ledf2vfp_test.c b/compiler-rt/test/Unit/ledf2vfp_test.c index e7ed522ab4b..5683590778c 100644 --- a/compiler-rt/test/Unit/ledf2vfp_test.c +++ b/compiler-rt/test/Unit/ledf2vfp_test.c @@ -46,6 +46,8 @@ int main() return 1; if (test__ledf2vfp(1.0, HUGE_VAL)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/lesf2vfp_test.c b/compiler-rt/test/Unit/lesf2vfp_test.c index dc5576b9e27..b5c20f61e8a 100644 --- a/compiler-rt/test/Unit/lesf2vfp_test.c +++ b/compiler-rt/test/Unit/lesf2vfp_test.c @@ -46,6 +46,8 @@ int main() return 1; if (test__lesf2vfp(1.0, HUGE_VALF)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/lshrti3_test.c b/compiler-rt/test/Unit/lshrti3_test.c index 093a6a2eb88..f266b54f63c 100644 --- a/compiler-rt/test/Unit/lshrti3_test.c +++ b/compiler-rt/test/Unit/lshrti3_test.c @@ -166,6 +166,8 @@ int main() if (test__lshrti3(make_ti(0xFEDCBA9876543215LL, 0xFEDCBA9876543215LL), 127, make_ti(0x0000000000000000LL, 0x0000000000000001LL))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/ltdf2vfp_test.c b/compiler-rt/test/Unit/ltdf2vfp_test.c index 5051e4833a9..7319397c5e4 100644 --- a/compiler-rt/test/Unit/ltdf2vfp_test.c +++ b/compiler-rt/test/Unit/ltdf2vfp_test.c @@ -44,6 +44,8 @@ int main() return 1; if (test__ltdf2vfp(1.0, HUGE_VAL)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/ltsf2vfp_test.c b/compiler-rt/test/Unit/ltsf2vfp_test.c index 78d2c1a3ae3..2d920c95932 100644 --- a/compiler-rt/test/Unit/ltsf2vfp_test.c +++ b/compiler-rt/test/Unit/ltsf2vfp_test.c @@ -46,6 +46,8 @@ int main() return 1; if (test__ltsf2vfp(1.0, HUGE_VALF)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/modti3_test.c b/compiler-rt/test/Unit/modti3_test.c index 3be071495ad..bd05c7237d2 100644 --- a/compiler-rt/test/Unit/modti3_test.c +++ b/compiler-rt/test/Unit/modti3_test.c @@ -88,6 +88,8 @@ int main() if (test__modti3(make_ti(0x8000000000000000LL, 0), -3, -2)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/muldf3vfp_test.c b/compiler-rt/test/Unit/muldf3vfp_test.c index 7ca5559c3aa..73454bf290a 100644 --- a/compiler-rt/test/Unit/muldf3vfp_test.c +++ b/compiler-rt/test/Unit/muldf3vfp_test.c @@ -43,6 +43,8 @@ int main() return 1; if (test__muldf3vfp(0.0, -0.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/mulsf3vfp_test.c b/compiler-rt/test/Unit/mulsf3vfp_test.c index fcb124c9471..92cf1f12849 100644 --- a/compiler-rt/test/Unit/mulsf3vfp_test.c +++ b/compiler-rt/test/Unit/mulsf3vfp_test.c @@ -43,6 +43,8 @@ int main() return 1; if (test__mulsf3vfp(0.0, -0.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/multc3_test.c b/compiler-rt/test/Unit/multc3_test.c index 40505f217f7..f8c66c0e426 100644 --- a/compiler-rt/test/Unit/multc3_test.c +++ b/compiler-rt/test/Unit/multc3_test.c @@ -367,7 +367,8 @@ int main() return 1; } } - +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/multi3_test.c b/compiler-rt/test/Unit/multi3_test.c index a4c0b7dbdf5..f8c6605eb25 100644 --- a/compiler-rt/test/Unit/multi3_test.c +++ b/compiler-rt/test/Unit/multi3_test.c @@ -127,6 +127,8 @@ int main() make_ti(0x0000000000000000LL, 0x00B504F333F9DE5BLL), make_ti(0x7FFFFFFFFFFFF328LL, 0xDF915DA296E8A000LL))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/mulvti3_test.c b/compiler-rt/test/Unit/mulvti3_test.c index dfe09ffc86b..be1aa2d331c 100644 --- a/compiler-rt/test/Unit/mulvti3_test.c +++ b/compiler-rt/test/Unit/mulvti3_test.c @@ -253,6 +253,8 @@ int main() // make_ti(0x8000000000000000LL, 0x0000000000000000LL))) // abort // return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/mulxc3_test.c b/compiler-rt/test/Unit/mulxc3_test.c index 771d19ab273..4297c162bd8 100644 --- a/compiler-rt/test/Unit/mulxc3_test.c +++ b/compiler-rt/test/Unit/mulxc3_test.c @@ -368,6 +368,8 @@ int main() } } +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/nedf2vfp_test.c b/compiler-rt/test/Unit/nedf2vfp_test.c index 8fdac1a0372..2c440439963 100644 --- a/compiler-rt/test/Unit/nedf2vfp_test.c +++ b/compiler-rt/test/Unit/nedf2vfp_test.c @@ -44,6 +44,8 @@ int main() return 1; if (test__nedf2vfp(1.0, HUGE_VAL)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/negdf2vfp_test.c b/compiler-rt/test/Unit/negdf2vfp_test.c index 7bdf155d392..dc55428d678 100644 --- a/compiler-rt/test/Unit/negdf2vfp_test.c +++ b/compiler-rt/test/Unit/negdf2vfp_test.c @@ -41,6 +41,8 @@ int main() return 1; if (test__negdf2vfp(-1.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/negsf2vfp_test.c b/compiler-rt/test/Unit/negsf2vfp_test.c index 419b32d726a..ef54cee1dbe 100644 --- a/compiler-rt/test/Unit/negsf2vfp_test.c +++ b/compiler-rt/test/Unit/negsf2vfp_test.c @@ -41,6 +41,8 @@ int main() return 1; if (test__negsf2vfp(-1.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/negti2_test.c b/compiler-rt/test/Unit/negti2_test.c index 6ecc8628d77..1945accfa95 100644 --- a/compiler-rt/test/Unit/negti2_test.c +++ b/compiler-rt/test/Unit/negti2_test.c @@ -120,6 +120,8 @@ int main() make_ti(0x8000000000000000LL, 0x0000000000000001LL))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/negvti2_test.c b/compiler-rt/test/Unit/negvti2_test.c index 1dc904e10ab..772840989ad 100644 --- a/compiler-rt/test/Unit/negvti2_test.c +++ b/compiler-rt/test/Unit/negvti2_test.c @@ -102,6 +102,8 @@ int main() if (test__negvti2(make_ti(0x7FFFFFFFFFFFFFFFLL, 0xFFFFFFFFFFFFFFFFLL))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/nesf2vfp_test.c b/compiler-rt/test/Unit/nesf2vfp_test.c index 507b42ec3c4..c085bf8b41f 100644 --- a/compiler-rt/test/Unit/nesf2vfp_test.c +++ b/compiler-rt/test/Unit/nesf2vfp_test.c @@ -44,6 +44,8 @@ int main() return 1; if (test__nesf2vfp(1.0, HUGE_VALF)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/parityti2_test.c b/compiler-rt/test/Unit/parityti2_test.c index c2f8d3d28a5..ac67b35669a 100644 --- a/compiler-rt/test/Unit/parityti2_test.c +++ b/compiler-rt/test/Unit/parityti2_test.c @@ -57,6 +57,8 @@ int main() ((ti_int)rand() << 32) + rand())) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/popcountti2_test.c b/compiler-rt/test/Unit/popcountti2_test.c index 53fee3b52a5..1b94a0c6aa5 100644 --- a/compiler-rt/test/Unit/popcountti2_test.c +++ b/compiler-rt/test/Unit/popcountti2_test.c @@ -75,6 +75,8 @@ int main() ((ti_int)rand() << 32) | rand())) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/powitf2_test.c b/compiler-rt/test/Unit/powitf2_test.c index ca690fd103a..817cb1130de 100644 --- a/compiler-rt/test/Unit/powitf2_test.c +++ b/compiler-rt/test/Unit/powitf2_test.c @@ -225,6 +225,8 @@ int main() if (test__powitf2(-2, -31, -1/2147483648.)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/powixf2_test.c b/compiler-rt/test/Unit/powixf2_test.c index 67d2463ca83..201870b37f1 100644 --- a/compiler-rt/test/Unit/powixf2_test.c +++ b/compiler-rt/test/Unit/powixf2_test.c @@ -225,6 +225,8 @@ int main() if (test__powixf2(-2, -31, -1/2147483648.)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/subdf3vfp_test.c b/compiler-rt/test/Unit/subdf3vfp_test.c index d1517ec51e3..86d6f2fef22 100644 --- a/compiler-rt/test/Unit/subdf3vfp_test.c +++ b/compiler-rt/test/Unit/subdf3vfp_test.c @@ -41,6 +41,8 @@ int main() return 1; if (test__subdf3vfp(0.0, -0.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/subsf3vfp_test.c b/compiler-rt/test/Unit/subsf3vfp_test.c index aabd01d749f..223e7f8f393 100644 --- a/compiler-rt/test/Unit/subsf3vfp_test.c +++ b/compiler-rt/test/Unit/subsf3vfp_test.c @@ -41,6 +41,8 @@ int main() return 1; if (test__subsf3vfp(0.0, -0.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/subvti3_test.c b/compiler-rt/test/Unit/subvti3_test.c index a579a1fc188..6176bdfda97 100644 --- a/compiler-rt/test/Unit/subvti3_test.c +++ b/compiler-rt/test/Unit/subvti3_test.c @@ -73,6 +73,8 @@ int main() if (test__subvti3(-1, make_ti(0x7FFFFFFFFFFFFFFFLL, 0xFFFFFFFFFFFFFFFFLL))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/trampoline_setup_test.c b/compiler-rt/test/Unit/trampoline_setup_test.c index c6dbe70e020..dc30fb6df60 100644 --- a/compiler-rt/test/Unit/trampoline_setup_test.c +++ b/compiler-rt/test/Unit/trampoline_setup_test.c @@ -57,7 +57,8 @@ int main() { #else int main() { - return 0; + printf("skipped\n"); + return 0; } #endif diff --git a/compiler-rt/test/Unit/truncdfsf2vfp_test.c b/compiler-rt/test/Unit/truncdfsf2vfp_test.c index 4a44dc7919f..afc7868b0de 100644 --- a/compiler-rt/test/Unit/truncdfsf2vfp_test.c +++ b/compiler-rt/test/Unit/truncdfsf2vfp_test.c @@ -43,6 +43,8 @@ int main() return 1; if (test__truncdfsf2vfp(123.456)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/ucmpti2_test.c b/compiler-rt/test/Unit/ucmpti2_test.c index d17fbb24578..55f820b89f2 100644 --- a/compiler-rt/test/Unit/ucmpti2_test.c +++ b/compiler-rt/test/Unit/ucmpti2_test.c @@ -109,6 +109,8 @@ int main() if (test__ucmpti2(make_tu(0xFFFFFFFFFFFFFFFFuLL, 0xFFFFFFFFFFFFFFFFuLL), make_tu(0xFFFFFFFFFFFFFFFFuLL, 0xFFFFFFFFFFFFFFFFuLL), 1)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/udivmodti4_test.c b/compiler-rt/test/Unit/udivmodti4_test.c index 620929ae061..e0cae35ea7a 100644 --- a/compiler-rt/test/Unit/udivmodti4_test.c +++ b/compiler-rt/test/Unit/udivmodti4_test.c @@ -65346,6 +65346,8 @@ int main() 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/compiler-rt/test/Unit/udivti3_test.c b/compiler-rt/test/Unit/udivti3_test.c index a94739a7c18..09e0e1cf70d 100644 --- a/compiler-rt/test/Unit/udivti3_test.c +++ b/compiler-rt/test/Unit/udivti3_test.c @@ -60,6 +60,8 @@ int main() make_tu(0x7FFFFFFFFFFFFFFFuLL, 0xFFFFFFFFFFFFFFFFuLL))) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/umodti3_test.c b/compiler-rt/test/Unit/umodti3_test.c index d75a1b3f956..5eac2d834fb 100644 --- a/compiler-rt/test/Unit/umodti3_test.c +++ b/compiler-rt/test/Unit/umodti3_test.c @@ -58,6 +58,8 @@ int main() 2, 0x1uLL)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/unorddf2vfp_test.c b/compiler-rt/test/Unit/unorddf2vfp_test.c index 1031138ae4b..d49d567896a 100644 --- a/compiler-rt/test/Unit/unorddf2vfp_test.c +++ b/compiler-rt/test/Unit/unorddf2vfp_test.c @@ -42,6 +42,8 @@ int main() return 1; if (test__unorddf2vfp(1.0, 1.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } diff --git a/compiler-rt/test/Unit/unordsf2vfp_test.c b/compiler-rt/test/Unit/unordsf2vfp_test.c index dedd7ecdd8c..3cadc81c708 100644 --- a/compiler-rt/test/Unit/unordsf2vfp_test.c +++ b/compiler-rt/test/Unit/unordsf2vfp_test.c @@ -42,6 +42,8 @@ int main() return 1; if (test__unordsf2vfp(1.0, 1.0)) return 1; +#else + printf("skipped\n"); #endif return 0; } |