summaryrefslogtreecommitdiff
path: root/test/QT
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-03-17 03:06:56 +0000
committerSteven Knight <knight@baldmt.com>2005-03-17 03:06:56 +0000
commit7e4b4c01d69a2d2a776abb49db68507706ded50e (patch)
tree89d7e783bfa6814d01de40df8a8b9b18539d9ef4 /test/QT
parenta911d49dc68205cebbd6b7e728f2cd1ad49b9aca (diff)
downloadscons-7e4b4c01d69a2d2a776abb49db68507706ded50e.tar.gz
Windows portability in tests. Replace overlooked import
Diffstat (limited to 'test/QT')
-rw-r--r--test/QT/QT.py16
1 files changed, 14 insertions, 2 deletions
diff --git a/test/QT/QT.py b/test/QT/QT.py
index 680784f5..a6580a6d 100644
--- a/test/QT/QT.py
+++ b/test/QT/QT.py
@@ -923,8 +923,20 @@ test.run(chdir='work12', arguments='-n noqtdir=1')
# Consequently, we need to just wipe out its value as follows>
os.environ['QTDIR'] = ''
test.run(chdir='work12', stderr=None, arguments='-n noqtdir=1')
-test.fail_test(not test.match_re(test.stderr(), r"""
+
+moc = test.where_is('moc')
+if moc:
+ import os.path
+ expect = """
+scons: warning: Could not detect qt, using moc executable as a hint \(QTDIR=%s\)
+File "SConstruct", line \d+, in \?
+""" % os.path.dirname(os.path.dirname(moc))
+else:
+ expect = """
scons: warning: Could not detect qt, using empty QTDIR
-""" + TestSCons.file_expr))
+File "SConstruct", line \d+, in \?
+"""
+
+test.fail_test(not test.match_re(test.stderr(), expect))
test.pass_test()