diff options
author | Bill Seurer <seurer@linux.vnet.ibm.com> | 2016-03-07 01:30:02 +0000 |
---|---|---|
committer | Bill Seurer <seurer@linux.vnet.ibm.com> | 2016-03-07 01:30:02 +0000 |
commit | 67a1830c6a67930d326e33f96bc20d041497505b (patch) | |
tree | ab1a3a5d02ab676224f11b4ab0e10300abb0d2bc | |
parent | fd4fee599e8cb4a41a6c6962f49b0215a802af09 (diff) | |
download | bcm5719-llvm-67a1830c6a67930d326e33f96bc20d041497505b.tar.gz bcm5719-llvm-67a1830c6a67930d326e33f96bc20d041497505b.zip |
[powerpc] mark setuid.c and setuid2.c as unsupported
setuid(0) hangs on powerpc64 big endian. When this is fixed remove
the unsupported flag.
https://llvm.org/bugs/show_bug.cgi?id=25799
llvm-svn: 262814
-rw-r--r-- | compiler-rt/test/tsan/setuid.c | 6 | ||||
-rw-r--r-- | compiler-rt/test/tsan/setuid2.c | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/compiler-rt/test/tsan/setuid.c b/compiler-rt/test/tsan/setuid.c index bc9c8ca3aba..2d6b7c866df 100644 --- a/compiler-rt/test/tsan/setuid.c +++ b/compiler-rt/test/tsan/setuid.c @@ -1,4 +1,10 @@ // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s +// +// setuid(0) hangs on powerpc64 big endian. When this is fixed remove +// the unsupported flag. +// https://llvm.org/bugs/show_bug.cgi?id=25799 +// +// UNSUPPORTED: powerpc64-unknown-linux-gnu #include "test.h" #include <sys/types.h> #include <unistd.h> diff --git a/compiler-rt/test/tsan/setuid2.c b/compiler-rt/test/tsan/setuid2.c index 9dbb6577e1c..3ea897802cc 100644 --- a/compiler-rt/test/tsan/setuid2.c +++ b/compiler-rt/test/tsan/setuid2.c @@ -1,4 +1,10 @@ // RUN: %clang_tsan -O1 %s -o %t && %env_tsan_opts=flush_memory_ms=1:memory_limit_mb=1 %run %t 2>&1 | FileCheck %s +// +// setuid(0) hangs on powerpc64 big endian. When this is fixed remove +// the unsupported flag. +// https://llvm.org/bugs/show_bug.cgi?id=25799 +// +// UNSUPPORTED: powerpc64-unknown-linux-gnu #include "test.h" #include <sys/types.h> #include <unistd.h> |