summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-xscripts/TestUtil.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py
index 1bee4fd4937..96b2a1e1592 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -1226,7 +1226,11 @@ def runTests(start, expanded, num = 0, script = False):
if isVista() and "novista" in config:
print "%s*** test not supported under Vista%s" % (prefix, suffix)
continue
-
+
+ if isDarwin() and "nodarwing" in config:
+ print "%s*** test not supported under Darwin%s" % (prefix, suffix)
+ continue
+
if not isWin32() and "win32only" in config:
print "%s*** test only supported under Win32%s" % (prefix, suffix)
continue