X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Flibpspp%2Frange-set-test.c;h=127d4223f14067aa3bb104ea97b6f59193e6dd68;hb=b2368722d2281703dd72de978e2fb7ad9caea7e5;hp=c7a89176e68e996dfe34110d785f7da5e2ebd112;hpb=6b9ce07bad5d1d0b826c620163f777d55a1f47b3;p=pspp diff --git a/tests/libpspp/range-set-test.c b/tests/libpspp/range-set-test.c index c7a89176e6..127d4223f1 100644 --- a/tests/libpspp/range-set-test.c +++ b/tests/libpspp/range-set-test.c @@ -38,7 +38,6 @@ #include #include -#include "xalloc.h" /* Exit with a failure code. (Place a breakpoint on this function while debugging.) */ @@ -129,7 +128,7 @@ prev_region (unsigned int pattern, unsigned int offset, unsigned int i; assert (offset <= UINT_BIT); - for (i = offset; i-- > 0; ) + for (i = offset; i-- > 0;) if (pattern & (1u << i)) { *start = i; @@ -279,12 +278,6 @@ test_insert (void) unsigned int init_pat; int i, j; -#if __GNUC__ == 4 && __GNUC_MINOR__ == 2 && __llvm__ - /* This test seems to trigger a bug in llvm-gcc 4.2 on Mac OS X 10.8.0. - Exit code 77 tells the Autotest framework that the test was skipped. */ - exit (77); -#endif - for (init_pat = 0; init_pat < (1u << positions); init_pat++) for (i = 0; i < positions + 1; i++) for (j = i; j <= positions + 1; j++) @@ -312,12 +305,6 @@ test_delete (void) unsigned int init_pat; int i, j; -#if __GNUC__ == 4 && __GNUC_MINOR__ == 2 && __llvm__ - /* This test seems to trigger a bug in llvm-gcc 4.2 on Mac OS X 10.8.0. - Exit code 77 tells the Autotest framework that the test was skipped. */ - exit (77); -#endif - for (init_pat = 0; init_pat < (1u << positions); init_pat++) for (i = 0; i < positions + 1; i++) for (j = i; j <= positions + 1; j++) @@ -342,12 +329,6 @@ test_allocate (void) unsigned int init_pat; int request; -#if __GNUC__ == 4 && __GNUC_MINOR__ == 2 && __llvm__ - /* This test seems to trigger a bug in llvm-gcc 4.2 on Mac OS X 10.8.0. - Exit code 77 tells the Autotest framework that the test was skipped. */ - exit (77); -#endif - for (init_pat = 0; init_pat < (1u << positions); init_pat++) for (request = 1; request <= positions + 1; request++) { @@ -398,12 +379,6 @@ test_allocate_fully (void) unsigned int init_pat; int request; -#if __GNUC__ == 4 && __GNUC_MINOR__ == 2 && __llvm__ - /* This test seems to trigger a bug in llvm-gcc 4.2 on Mac OS X 10.8.0. - Exit code 77 tells the Autotest framework that the test was skipped. */ - exit (77); -#endif - for (init_pat = 0; init_pat < (1u << positions); init_pat++) for (request = 1; request <= positions + 1; request++) {