diff options
-rw-r--r-- | test/nptl/Makefile.in | 5 | ||||
-rw-r--r-- | test/pthread/Makefile.in | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/nptl/Makefile.in b/test/nptl/Makefile.in index 35859f9..ac6cf3f 100644 --- a/test/nptl/Makefile.in +++ b/test/nptl/Makefile.in @@ -11,6 +11,11 @@ TESTS_DISABLED := tst-tls2 endif # deadlock +ifeq ($(TARGET_ARCH),or1k) +TESTS_DISABLED := tst-sem11 tst-fork1 +endif + +# deadlock ifeq ($(TARGET_ARCH),sh) TESTS_DISABLED := tst-cond1 tst-cond4 tst-cond6 tst-cond7 tst-cond10 \ tst-cond13 tst-cond14 tst-cond15 tst-cond18 tst-cond20 \ diff --git a/test/pthread/Makefile.in b/test/pthread/Makefile.in index cb7cb6d..65673a8 100644 --- a/test/pthread/Makefile.in +++ b/test/pthread/Makefile.in @@ -3,6 +3,10 @@ TESTS_DISABLED += cancellation-points +ifeq ($(TARGET_ARCH),or1k) +TESTS_DISABLED += ex3 +endif + ifeq ($(TARGET_ARCH),sh) TESTS_DISABLED += ex2 ex7 endif |