summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-xscripts/TestUtil.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py
index 50d7646d8fe..45e0230f6b8 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -2543,6 +2543,8 @@ def getTestDirectory(name, baseDir = os.getcwd()):
platform = "osx"
elif isUbuntu() or isDebian():
platform = "x86_64-linux-gnu" if x64 else "i386-linux-gnu"
+ elif isAIX():
+ platform = "ppc64" if x64 else "ppc"
else:
platform = "x64" if x64 else "x86"
configuration = ("cpp11-" if cpp11 else "") + ("static" if static else "shared")