diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-11-22 15:33:51 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-11-22 15:33:51 +0100 |
commit | 217c7da3b9434f9f4fb4e23eb133506b22bca5e0 (patch) | |
tree | 7dd7c0cbf673bfcef59efa5e7437db1e2fa7c3cc | |
parent | 19fd0dc93b10ea4263bfa6c1b37d64e419da2445 (diff) |
sh: disable some tests, we need to investigate later, tst-cond1 deadlocks on glibc, too
-rw-r--r-- | test/nptl/Makefile.in | 7 | ||||
-rw-r--r-- | test/pthread/Makefile.in | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/test/nptl/Makefile.in b/test/nptl/Makefile.in index a19621f..e1cb91f 100644 --- a/test/nptl/Makefile.in +++ b/test/nptl/Makefile.in @@ -4,6 +4,13 @@ ifeq ($(TARGET_ARCH),metag) TESTS_DISABLED := tst-cleanup0 tst-cleanupx0 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 \ + tst-cond21 tst-cond22 tst-cputimer1 tst-cputimer3 tst-mutex8 \ + tst-timer4 tst-timer5 +endif TESTS := tst-align tst-align2 tst-atfork1 tst-attr1 tst-attr2 tst-attr3 \ tst-barrier1 tst-barrier2 tst-barrier3 tst-barrier4 tst-basic1 \ diff --git a/test/pthread/Makefile.in b/test/pthread/Makefile.in index 9fbecc2..cb7cb6d 100644 --- a/test/pthread/Makefile.in +++ b/test/pthread/Makefile.in @@ -3,6 +3,10 @@ TESTS_DISABLED += cancellation-points +ifeq ($(TARGET_ARCH),sh) +TESTS_DISABLED += ex2 ex7 +endif + EXTRA_LDFLAGS := -lpthread LDFLAGS_cancellation-points := -lrt |