diff options
author | Greg Noel <GregNoel@tigris.org> | 2010-03-29 05:50:15 (GMT) |
---|---|---|
committer | Greg Noel <GregNoel@tigris.org> | 2010-03-29 05:50:15 (GMT) |
commit | 7adebb06bb6055345cc584377159d8052ea39e1b (patch) | |
tree | d0ca5f58b87d964927a1db7f4fe8a602f8405d23 /test/LoadableModule.py | |
parent | 59ed0a109bf5add2efcef459080837b11066c6fb (diff) | |
download | SCons-7adebb06bb6055345cc584377159d8052ea39e1b.zip SCons-7adebb06bb6055345cc584377159d8052ea39e1b.tar.gz SCons-7adebb06bb6055345cc584377159d8052ea39e1b.tar.bz2 |
http://scons.tigris.org/issues/show_bug.cgi?id=2345
Accumulated small fixers: renames, next, zip, and intern.
Files that were modified or added while developing on branches/pending didn't
have the fixers previously applied. This patchset picks up those.
Diffstat (limited to 'test/LoadableModule.py')
-rw-r--r-- | test/LoadableModule.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/test/LoadableModule.py b/test/LoadableModule.py index 6109359..b28a565 100644 --- a/test/LoadableModule.py +++ b/test/LoadableModule.py @@ -102,11 +102,13 @@ test.run(arguments = '.', stderr=TestSCons.noisy_ar, match=TestSCons.match_re_dotall) -if sys.platform.find('darwin') != -1: - test.run(program='/usr/bin/file', - arguments = "foo1", - match = TestCmd.match_re, - stdout="foo1: Mach-O bundle (ppc|i386)\n") +# TODO: Add new Intel-based Macs? Why are we only picking on Macs? +#if sys.platform.find('darwin') != -1: +# test.run(program='/usr/bin/file', +# arguments = "foo1", +# match = TestCmd.match_re, +# stdout="foo1: Mach-O bundle (ppc|i386)\n") +# My laptop prints "foo1: Mach-O 64-bit bundle x86_64" if sys.platform in platforms_with_dlopen: os.environ['LD_LIBRARY_PATH'] = test.workpath() |