diff options
author | Steven Knight <knight@baldmt.com> | 2005-03-17 03:06:56 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-03-17 03:06:56 (GMT) |
commit | 7e4b4c01d69a2d2a776abb49db68507706ded50e (patch) | |
tree | 89d7e783bfa6814d01de40df8a8b9b18539d9ef4 /test/QT | |
parent | a911d49dc68205cebbd6b7e728f2cd1ad49b9aca (diff) | |
download | SCons-7e4b4c01d69a2d2a776abb49db68507706ded50e.zip SCons-7e4b4c01d69a2d2a776abb49db68507706ded50e.tar.gz SCons-7e4b4c01d69a2d2a776abb49db68507706ded50e.tar.bz2 |
Windows portability in tests. Replace overlooked import
Diffstat (limited to 'test/QT')
-rw-r--r-- | test/QT/QT.py | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/test/QT/QT.py b/test/QT/QT.py index 680784f..a6580a6 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() |