diff options
author | William Deegan <bill@baddogconsulting.com> | 2018-09-27 00:22:49 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2018-09-27 00:22:49 (GMT) |
commit | a7db6eb20c568892efc75fb0613aa0e0f3828624 (patch) | |
tree | 05af8aae300145ea03faec5bf616f10853be51f5 | |
parent | e3a56e698a663c309d42d56e1064077d4c5de602 (diff) | |
download | SCons-a7db6eb20c568892efc75fb0613aa0e0f3828624.zip SCons-a7db6eb20c568892efc75fb0613aa0e0f3828624.tar.gz SCons-a7db6eb20c568892efc75fb0613aa0e0f3828624.tar.bz2 |
Fix applelink test to work on win32
-rw-r--r-- | test/LINK/applelink.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/LINK/applelink.py b/test/LINK/applelink.py index b13b36f..3419fc1 100644 --- a/test/LINK/applelink.py +++ b/test/LINK/applelink.py @@ -50,7 +50,6 @@ main(int argc, char *argv[]) test.write('SConstruct', """ DefaultEnvironment(tools=[]) env = Environment(PLATFORM='darwin') - env.Object( target = '#foo.o', source = ['foo.c'], @@ -59,7 +58,7 @@ env.Object( ) """ % locals()) -test.run(arguments='-Q', stdout='gcc -o foo.o -c -Fframeworks foo.c\n') +test.run(arguments='-Q -n', stdout='gcc -o foo.o -c -Fframeworks foo.c\n') test.pass_test() |