]> granicus.if.org Git - clang/commitdiff
[AIX][test/Index] Set/propagate AIXTHREAD_STK for AIX
authorHubert Tong <hubert.reinterpretcast@gmail.com>
Tue, 13 Aug 2019 13:38:15 +0000 (13:38 +0000)
committerHubert Tong <hubert.reinterpretcast@gmail.com>
Tue, 13 Aug 2019 13:38:15 +0000 (13:38 +0000)
Summary:
Some tests perform deep recursion, which requires a larger pthread stack
size than the relatively low default of 192 KiB for 64-bit processes on
AIX. The `AIXTHREAD_STK` environment variable provides a non-intrusive
way to request a larger pthread stack size for the tests. The required
pthread stack size depends on the build configuration.

A 4 MiB default is generous compared to the 512 KiB of macOS; however,
it is known that some compilers on AIX produce code that uses
comparatively more stack space.

Reviewers: xingxue, daltenty, jasonliu

Reviewed By: daltenty

Subscribers: arphaman, jfb, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D65688

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@368690 91177308-0d34-0410-b5e6-96231b3b80d8

test/Index/lit.local.cfg [new file with mode: 0644]

diff --git a/test/Index/lit.local.cfg b/test/Index/lit.local.cfg
new file mode 100644 (file)
index 0000000..fb7d197
--- /dev/null
@@ -0,0 +1,12 @@
+import platform
+
+# Some tests perform deep recursion, which requires a larger pthread stack size
+# than the relatively low default of 192 KiB for 64-bit processes on AIX. The
+# `AIXTHREAD_STK` environment variable provides a non-intrusive way to request
+# a larger pthread stack size for the tests. Various applications and runtime
+# libraries on AIX use a default pthread stack size of 4 MiB, so we will use
+# that as a default value here.
+if 'AIXTHREAD_STK' in os.environ:
+    config.environment['AIXTHREAD_STK'] = os.environ['AIXTHREAD_STK']
+elif platform.system() == 'AIX':
+    config.environment['AIXTHREAD_STK'] = '4194304'