diff options
| author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-12-09 10:34:22 +0000 |
|---|---|---|
| committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-12-09 10:34:22 +0000 |
| commit | 054ab17c17d782187b63e01f21b4d9f3e85067d6 (patch) | |
| tree | 215e86751946781b6b781c0ac81903edf9c021fd /llvm/test | |
| parent | ed72cdc010dcd3926fc71c561d298f56c6720eb6 (diff) | |
| download | bcm5719-llvm-054ab17c17d782187b63e01f21b4d9f3e85067d6.tar.gz bcm5719-llvm-054ab17c17d782187b63e01f21b4d9f3e85067d6.zip | |
Drop the address space limit for tests in the makefile build.
The limit seems to break newer pythons (see PR13598) so just drop it for now.
Eventually lit should learn to set limits for its children instead of a global
limit in the makefile.
If some PPC bots fail after this change: That's a good thing, they actually run
clang tests now.
llvm-svn: 169695
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/test/Makefile b/llvm/test/Makefile index 810fdded465..4e690cc325e 100644 --- a/llvm/test/Makefile +++ b/llvm/test/Makefile @@ -78,8 +78,10 @@ else # !SunOS ifeq ($(HOST_OS),AuroraUX) ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ; else # !AuroraUX -# Fedora 13 x86-64 python fails with -v 76800 -ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 1024000 ; +# Newer versions of python try to allocate an insane amount of address space for +# its thread-local storage, don't set a limit here. +# FIXME: Those limits should be enforced by lit instead of globally. +ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; endif # AuroraUX endif # SunOS |

