summaryrefslogtreecommitdiffstats
path: root/test/scons-time/run/option/quiet.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/scons-time/run/option/quiet.py')
-rw-r--r--test/scons-time/run/option/quiet.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/scons-time/run/option/quiet.py b/test/scons-time/run/option/quiet.py
index 5d5d7cf..f5a3d8c 100644
--- a/test/scons-time/run/option/quiet.py
+++ b/test/scons-time/run/option/quiet.py
@@ -39,7 +39,7 @@ test.diff_function = TestSCons_time.diff_re
def tempdir_re(*args):
- import os
+ import os,sys
import os.path
import string
import tempfile
@@ -49,6 +49,9 @@ def tempdir_re(*args):
x = apply(os.path.join, args)
x = re.escape(x)
x = string.replace(x, 'time\\-', 'time\\-[^%s]*' % sep)
+ if sys.platform=='darwin':
+ # OSX has /tmp in /private/tmp.
+ x = '(/private)?' + x
return x
scons_py = re.escape(test.workpath('src', 'script', 'scons.py'))