diff options
author | Ed Schouten <ed@FreeBSD.org> | 2011-06-02 20:02:42 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2011-06-02 20:02:42 +0000 |
commit | b0a04aaa595ba76468e521f12727a872d144d6d0 (patch) | |
tree | 51db692a6c937b68c7180d996af6bb7952b4b55d /test | |
parent | f170b6928b38a264ce005e5fa80d428364b6f659 (diff) |
Diffstat (limited to 'test')
80 files changed, 160 insertions, 2 deletions
diff --git a/test/Unit/absvti2_test.c b/test/Unit/absvti2_test.c index 0a1db6a5650ed..8233c18ff09ad 100644 --- a/test/Unit/absvti2_test.c +++ b/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/test/Unit/adddf3vfp_test.c b/test/Unit/adddf3vfp_test.c index 6ead2341abf1a..5ad42f7b3a6e7 100644 --- a/test/Unit/adddf3vfp_test.c +++ b/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/test/Unit/addsf3vfp_test.c b/test/Unit/addsf3vfp_test.c index ddfe39f96272d..95e057c363052 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; } diff --git a/test/Unit/addvti3_test.c b/test/Unit/addvti3_test.c index 33cfbc98529b2..1cf066c489177 100644 --- a/test/Unit/addvti3_test.c +++ b/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/test/Unit/ashlti3_test.c b/test/Unit/ashlti3_test.c index 4b6c6ca0164be..b9f4dcc0a8c77 100644 --- a/test/Unit/ashlti3_test.c +++ b/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/test/Unit/ashrti3_test.c b/test/Unit/ashrti3_test.c index bfa34cbe9675d..3abee36b6b7d0 100644 --- a/test/Unit/ashrti3_test.c +++ b/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/test/Unit/bswapdi2_test.c b/test/Unit/bswapdi2_test.c index 634c2f9b1d479..2d830cf5e41e8 100644 --- a/test/Unit/bswapdi2_test.c +++ b/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/test/Unit/bswapsi2_test.c b/test/Unit/bswapsi2_test.c index 4fb756008b47f..4488a888e1eb0 100644 --- a/test/Unit/bswapsi2_test.c +++ b/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/test/Unit/clzti2_test.c b/test/Unit/clzti2_test.c index 668c790b4d5ac..d2ca1645dd1ac 100644 --- a/test/Unit/clzti2_test.c +++ b/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/test/Unit/cmpti2_test.c b/test/Unit/cmpti2_test.c index 2f5828ededa97..4339e0abb5e9e 100644 --- a/test/Unit/cmpti2_test.c +++ b/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/test/Unit/ctzti2_test.c b/test/Unit/ctzti2_test.c index 485a88d70a986..c4934bd254b7f 100644 --- a/test/Unit/ctzti2_test.c +++ b/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/test/Unit/divdf3vfp_test.c b/test/Unit/divdf3vfp_test.c index ce5b25858113b..e13822ffcaa03 100644 --- a/test/Unit/divdf3vfp_test.c +++ b/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/test/Unit/divsf3vfp_test.c b/test/Unit/divsf3vfp_test.c index 6248ca0c66eeb..8382558412cf2 100644 --- a/test/Unit/divsf3vfp_test.c +++ b/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/test/Unit/divtc3_test.c b/test/Unit/divtc3_test.c index 815c10bcd0626..7bb74d7551463 100644 --- a/test/Unit/divtc3_test.c +++ b/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/test/Unit/divti3_test.c b/test/Unit/divti3_test.c index c9eceedd40ca9..7c8e2970fa6e5 100644 --- a/test/Unit/divti3_test.c +++ b/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/test/Unit/divxc3_test.c b/test/Unit/divxc3_test.c index c93db67d875e9..aa8a7625d139f 100644 --- a/test/Unit/divxc3_test.c +++ b/test/Unit/divxc3_test.c @@ -372,6 +372,8 @@ int main() } } +#else + printf("skipped\n"); #endif return 0; } diff --git a/test/Unit/eqdf2vfp_test.c b/test/Unit/eqdf2vfp_test.c index 6babd249858dd..585bd08e97892 100644 --- a/test/Unit/eqdf2vfp_test.c +++ b/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/test/Unit/eqsf2vfp_test.c b/test/Unit/eqsf2vfp_test.c index 4a292bc2151c4..b0eed9402a370 100644 --- a/test/Unit/eqsf2vfp_test.c +++ b/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/test/Unit/extebdsfdf2vfp_test.c b/test/Unit/extebdsfdf2vfp_test.c index 9bbe5729ed3f0..3a009cf2d7f8c 100644 --- a/test/Unit/extebdsfdf2vfp_test.c +++ b/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/test/Unit/ffsti2_test.c b/test/Unit/ffsti2_test.c index b679ab20fe714..fcb5c2725f26e 100644 --- a/test/Unit/ffsti2_test.c +++ b/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/test/Unit/fixdfsivfp_test.c b/test/Unit/fixdfsivfp_test.c index a9f012c444147..c6102e274ee58 100644 --- a/test/Unit/fixdfsivfp_test.c +++ b/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/test/Unit/fixdfti_test.c b/test/Unit/fixdfti_test.c index 5ea33172d6829..98a5628edddf1 100644 --- a/test/Unit/fixdfti_test.c +++ b/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/test/Unit/fixsfsivfp_test.c b/test/Unit/fixsfsivfp_test.c index c10152255b482..9abf5e8564765 100644 --- a/test/Unit/fixsfsivfp_test.c +++ b/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/test/Unit/fixsfti_test.c b/test/Unit/fixsfti_test.c index 325659e0eb92c..5fdd005785280 100644 --- a/test/Unit/fixsfti_test.c +++ b/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/test/Unit/fixunsdfsivfp_test.c b/test/Unit/fixunsdfsivfp_test.c index 991506f8ac125..3727cf7b02fba 100644 --- a/test/Unit/fixunsdfsivfp_test.c +++ b/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/test/Unit/fixunssfsivfp_test.c b/test/Unit/fixunssfsivfp_test.c index 08e0e8ee9bcbb..c8e45f408b638 100644 --- a/test/Unit/fixunssfsivfp_test.c +++ b/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/test/Unit/fixunstfdi_test.c b/test/Unit/fixunstfdi_test.c index a7cc9be2fcfcb..d0a5db7a9c974 100644 --- a/test/Unit/fixunstfdi_test.c +++ b/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/test/Unit/fixunsxfdi_test.c b/test/Unit/fixunsxfdi_test.c index 6d0f8d3fb65ad..4308f6f4ef1fb 100644 --- a/test/Unit/fixunsxfdi_test.c +++ b/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/test/Unit/fixunsxfti_test.c b/test/Unit/fixunsxfti_test.c index f1f6087009d9d..0e3c842bc0223 100644 --- a/test/Unit/fixunsxfti_test.c +++ b/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/test/Unit/fixxfdi_test.c b/test/Unit/fixxfdi_test.c index 1facd36494d01..43ac0f8aaa3c3 100644 --- a/test/Unit/fixxfdi_test.c +++ b/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/test/Unit/fixxfti_test.c b/test/Unit/fixxfti_test.c index 85c15a20c2caf..11296b0368715 100644 --- a/test/Unit/fixxfti_test.c +++ b/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/test/Unit/floatdixf_test.c b/test/Unit/floatdixf_test.c index 8d049fdb8984c..3376664263181 100644 --- a/test/Unit/floatdixf_test.c +++ b/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/test/Unit/floatsidfvfp_test.c b/test/Unit/floatsidfvfp_test.c index 79e87b3211c19..e21ecda59945e 100644 --- a/test/Unit/floatsidfvfp_test.c +++ b/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/test/Unit/floatsisfvfp_test.c b/test/Unit/floatsisfvfp_test.c index 00f4ac298d3fe..d20905bd91e36 100644 --- a/test/Unit/floatsisfvfp_test.c +++ b/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/test/Unit/floattidf_test.c b/test/Unit/floattidf_test.c index 4fcf272d82857..cfe40849960d9 100644 --- a/test/Unit/floattidf_test.c +++ b/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/test/Unit/floattisf_test.c b/test/Unit/floattisf_test.c index 7e43aa10523d1..a83ec63a25c9c 100644 --- a/test/Unit/floattisf_test.c +++ b/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/test/Unit/floattixf_test.c b/test/Unit/floattixf_test.c index 5ba17f1beb25a..4a9dfb56ac93a 100644 --- a/test/Unit/floattixf_test.c +++ b/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/test/Unit/floatundixf_test.c b/test/Unit/floatundixf_test.c index 43ac85f7a805c..1974fa01012a7 100644 --- a/test/Unit/floatundixf_test.c +++ b/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/test/Unit/floatunssidfvfp_test.c b/test/Unit/floatunssidfvfp_test.c index fa174ef18add6..4883af1cf5fa0 100644 --- a/test/Unit/floatunssidfvfp_test.c +++ b/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/test/Unit/floatunssisfvfp_test.c b/test/Unit/floatunssisfvfp_test.c index 099f4e39a3ed1..917061a91b18e 100644 --- a/test/Unit/floatunssisfvfp_test.c +++ b/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/test/Unit/floatuntidf_test.c b/test/Unit/floatuntidf_test.c index 3b630f5c76ac2..caad5d435e1a9 100644 --- a/test/Unit/floatuntidf_test.c +++ b/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/test/Unit/floatuntisf_test.c b/test/Unit/floatuntisf_test.c index e80403b4991c8..85c0727ce13ac 100644 --- a/test/Unit/floatuntisf_test.c +++ b/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/test/Unit/floatuntixf_test.c b/test/Unit/floatuntixf_test.c index 9d7f974f06cec..fc7531a9c8233 100644 --- a/test/Unit/floatuntixf_test.c +++ b/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/test/Unit/gedf2vfp_test.c b/test/Unit/gedf2vfp_test.c index 4731d3ffc3c56..e280ce0780a51 100644 --- a/test/Unit/gedf2vfp_test.c +++ b/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/test/Unit/gesf2vfp_test.c b/test/Unit/gesf2vfp_test.c index 9f1c7568c0a83..aa53eb7399793 100644 --- a/test/Unit/gesf2vfp_test.c +++ b/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/test/Unit/gtdf2vfp_test.c b/test/Unit/gtdf2vfp_test.c index f28297974f119..fd54e0b4e59f0 100644 --- a/test/Unit/gtdf2vfp_test.c +++ b/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/test/Unit/gtsf2vfp_test.c b/test/Unit/gtsf2vfp_test.c index 03fb00e19937e..2f4ad99a63d63 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; } diff --git a/test/Unit/ledf2vfp_test.c b/test/Unit/ledf2vfp_test.c index e7ed522ab4bb4..5683590778c0a 100644 --- a/test/Unit/ledf2vfp_test.c +++ b/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/test/Unit/lesf2vfp_test.c b/test/Unit/lesf2vfp_test.c index dc5576b9e271c..b5c20f61e8ad3 100644 --- a/test/Unit/lesf2vfp_test.c +++ b/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/test/Unit/lshrti3_test.c b/test/Unit/lshrti3_test.c index 093a6a2eb888c..f266b54f63c0c 100644 --- a/test/Unit/lshrti3_test.c +++ b/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/test/Unit/ltdf2vfp_test.c b/test/Unit/ltdf2vfp_test.c index 5051e4833a9a0..7319397c5e4d5 100644 --- a/test/Unit/ltdf2vfp_test.c +++ b/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/test/Unit/ltsf2vfp_test.c b/test/Unit/ltsf2vfp_test.c index 78d2c1a3ae384..2d920c9593266 100644 --- a/test/Unit/ltsf2vfp_test.c +++ b/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/test/Unit/modti3_test.c b/test/Unit/modti3_test.c index 3be071495ad0f..bd05c7237d2e9 100644 --- a/test/Unit/modti3_test.c +++ b/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/test/Unit/muldf3vfp_test.c b/test/Unit/muldf3vfp_test.c index 7ca5559c3aabd..73454bf290aab 100644 --- a/test/Unit/muldf3vfp_test.c +++ b/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/test/Unit/mulsf3vfp_test.c b/test/Unit/mulsf3vfp_test.c index fcb124c947171..92cf1f1284977 100644 --- a/test/Unit/mulsf3vfp_test.c +++ b/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/test/Unit/multc3_test.c b/test/Unit/multc3_test.c index 40505f217f70f..f8c66c0e426f3 100644 --- a/test/Unit/multc3_test.c +++ b/test/Unit/multc3_test.c @@ -367,7 +367,8 @@ int main() return 1; } } - +#else + printf("skipped\n"); #endif return 0; } diff --git a/test/Unit/multi3_test.c b/test/Unit/multi3_test.c index a4c0b7dbdf51d..f8c6605eb254a 100644 --- a/test/Unit/multi3_test.c +++ b/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/test/Unit/mulvti3_test.c b/test/Unit/mulvti3_test.c index dfe09ffc86b07..be1aa2d331c64 100644 --- a/test/Unit/mulvti3_test.c +++ b/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/test/Unit/mulxc3_test.c b/test/Unit/mulxc3_test.c index 771d19ab273bb..4297c162bd8e3 100644 --- a/test/Unit/mulxc3_test.c +++ b/test/Unit/mulxc3_test.c @@ -368,6 +368,8 @@ int main() } } +#else + printf("skipped\n"); #endif return 0; } diff --git a/test/Unit/nedf2vfp_test.c b/test/Unit/nedf2vfp_test.c index 8fdac1a037209..2c44043996331 100644 --- a/test/Unit/nedf2vfp_test.c +++ b/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/test/Unit/negdf2vfp_test.c b/test/Unit/negdf2vfp_test.c index 7bdf155d392f4..dc55428d67807 100644 --- a/test/Unit/negdf2vfp_test.c +++ b/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/test/Unit/negsf2vfp_test.c b/test/Unit/negsf2vfp_test.c index 419b32d726a5f..ef54cee1dbee0 100644 --- a/test/Unit/negsf2vfp_test.c +++ b/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/test/Unit/negti2_test.c b/test/Unit/negti2_test.c index 6ecc8628d77ee..1945accfa9521 100644 --- a/test/Unit/negti2_test.c +++ b/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/test/Unit/negvti2_test.c b/test/Unit/negvti2_test.c index 1dc904e10ab8c..772840989ad6a 100644 --- a/test/Unit/negvti2_test.c +++ b/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/test/Unit/nesf2vfp_test.c b/test/Unit/nesf2vfp_test.c index 507b42ec3c4c0..c085bf8b41fa8 100644 --- a/test/Unit/nesf2vfp_test.c +++ b/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/test/Unit/parityti2_test.c b/test/Unit/parityti2_test.c index c2f8d3d28a57d..ac67b35669a72 100644 --- a/test/Unit/parityti2_test.c +++ b/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/test/Unit/popcountti2_test.c b/test/Unit/popcountti2_test.c index 53fee3b52a555..1b94a0c6aa510 100644 --- a/test/Unit/popcountti2_test.c +++ b/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/test/Unit/powitf2_test.c b/test/Unit/powitf2_test.c index ca690fd103a0a..817cb1130dee3 100644 --- a/test/Unit/powitf2_test.c +++ b/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/test/Unit/powixf2_test.c b/test/Unit/powixf2_test.c index 67d2463ca83f2..201870b37f15f 100644 --- a/test/Unit/powixf2_test.c +++ b/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/test/Unit/subdf3vfp_test.c b/test/Unit/subdf3vfp_test.c index d1517ec51e383..86d6f2fef22b8 100644 --- a/test/Unit/subdf3vfp_test.c +++ b/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/test/Unit/subsf3vfp_test.c b/test/Unit/subsf3vfp_test.c index aabd01d749f8e..223e7f8f3936d 100644 --- a/test/Unit/subsf3vfp_test.c +++ b/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/test/Unit/subvti3_test.c b/test/Unit/subvti3_test.c index a579a1fc188b1..6176bdfda97a3 100644 --- a/test/Unit/subvti3_test.c +++ b/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/test/Unit/trampoline_setup_test.c b/test/Unit/trampoline_setup_test.c index c6dbe70e02099..dc30fb6df60aa 100644 --- a/test/Unit/trampoline_setup_test.c +++ b/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/test/Unit/truncdfsf2vfp_test.c b/test/Unit/truncdfsf2vfp_test.c index 4a44dc7919f70..afc7868b0de08 100644 --- a/test/Unit/truncdfsf2vfp_test.c +++ b/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/test/Unit/ucmpti2_test.c b/test/Unit/ucmpti2_test.c index d17fbb2457860..55f820b89f2c1 100644 --- a/test/Unit/ucmpti2_test.c +++ b/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/test/Unit/udivmodti4_test.c b/test/Unit/udivmodti4_test.c index 620929ae061e7..e0cae35ea7ae6 100644 --- a/test/Unit/udivmodti4_test.c +++ b/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/test/Unit/udivti3_test.c b/test/Unit/udivti3_test.c index a94739a7c1899..09e0e1cf70d96 100644 --- a/test/Unit/udivti3_test.c +++ b/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/test/Unit/umodti3_test.c b/test/Unit/umodti3_test.c index d75a1b3f956c2..5eac2d834fbfb 100644 --- a/test/Unit/umodti3_test.c +++ b/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/test/Unit/unorddf2vfp_test.c b/test/Unit/unorddf2vfp_test.c index 1031138ae4bd4..d49d567896ae6 100644 --- a/test/Unit/unorddf2vfp_test.c +++ b/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/test/Unit/unordsf2vfp_test.c b/test/Unit/unordsf2vfp_test.c index dedd7ecdd8c87..3cadc81c708bb 100644 --- a/test/Unit/unordsf2vfp_test.c +++ b/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; } |