summaryrefslogtreecommitdiffstats
path: root/test/Object.py
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2012-12-16 17:56:16 (GMT)
committerDirk Baechle <dl9obn@darc.de>2012-12-16 17:56:16 (GMT)
commit78785a796c5cb080dc6a0e7bc99c720a349b3859 (patch)
tree53e4be521ebf4c4f65c14c9e68b64b5327bf61c4 /test/Object.py
parent1bf9aa83fc024950012dd76d110443fc2d30c92a (diff)
downloadSCons-78785a796c5cb080dc6a0e7bc99c720a349b3859.zip
SCons-78785a796c5cb080dc6a0e7bc99c720a349b3859.tar.gz
SCons-78785a796c5cb080dc6a0e7bc99c720a349b3859.tar.bz2
- extended the must_contain* methods of the test framework, such that they all support user-defined find/search functions
- relaxed several of the regex comparisons for better cross-platform compatibility
Diffstat (limited to 'test/Object.py')
-rw-r--r--test/Object.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/Object.py b/test/Object.py
index 406c2c1..c07da46 100644
--- a/test/Object.py
+++ b/test/Object.py
@@ -24,13 +24,9 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
-import sys
import TestSCons
-if sys.platform == 'win32':
- _obj = '.obj'
-else:
- _obj = '.o'
+_obj = TestSCons._obj
test = TestSCons.TestSCons()