#!/usr/bin/env python # # __COPYRIGHT__ # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be included # in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" """ Verify correct execution of long command lines with the live utilities that use TempFileMunge(). """ import sys import TestSCons test = TestSCons.TestSCons() if sys.platform == 'win32': lib_static_lib = 'static.lib' lib_shared_dll ='shared.dll' arflag_init = '/LIBPATH:' + test.workpath() arflag = ' /LIBPATH:' + test.workpath() linkflag_init = '/LIBPATH:' + test.workpath() linkflag = ' /LIBPATH:' + test.workpath() import SCons.Tool.MSCommon as msc if not msc.msvc_exists(): lib_shared_dll = 'shared.dll' lib_static_lib = 'libstatic.a' arflag_init = 'r' arflag = 'o' linkflag_init = '-L' + test.workpath() linkflag = ' -L' + test.workpath() elif sys.platform == 'cygwin': lib_static_lib = 'libstatic.a' lib_shared_dll ='shared.dll' arflag_init = 'r' arflag = 'o' linkflag_init = '-L' + test.workpath() linkflag = ' -L' + test.workpath() elif sys.platform in ('darwin', 'irix6'): lib_shared_dll = 'libshared' + TestSCons._dll lib_static_lib = 'libstatic.a' arflag_init = 'r' arflag = 'v' linkflag_init = '-L' + test.workpath() linkflag = ' -L' + test.workpath() else: lib_shared_dll = 'libshared.so' lib_static_lib = 'libstatic.a' arflag_init = 'r' arflag = 'o' linkflag_init = '-L' + test.workpath() linkflag = ' -L' + test.workpath() test.write('SConstruct', """ arflags = r'%(arflag_init)s' while len(arflags) <= 8100: arflags = arflags + r'%(arflag)s' linkflags = r'%(linkflag_init)s' while len(linkflags) <= 8100: linkflags = linkflags + r'%(linkflag)s' env = Environment(ARFLAGS = '$ARXXX', ARXXX = arflags, LINKFLAGS = '$LINKXXX', LINKXXX = linkflags) env.Program(target = 'foo', source = 'foo.c') env.StaticLibrary(target = 'static', source = 'static.c') # SharedLibrary() uses $LINKFLAGS by default. env.SharedLibrary(target = 'shared', source = 'shared.c', no_import_lib=1) """ % locals()) test.write('foo.c', r""" #include #include int main(int argc, char *argv[]) { argv[argc++] = "--"; printf("foo.c\n"); exit (0); } """) test.write('static.c', r""" #include #include int main(int argc, char *argv[]) { argv[argc++] = "--"; printf("static.c\n"); exit (0); } """) test.write('shared.c', r""" #include #include int main(int argc, char *argv[]) { argv[argc++] = "--"; printf("shared.c\n"); exit (0); } """) test.run(arguments = '.', stderr=TestSCons.noisy_ar, match=TestSCons.match_re_dotall) test.up_to_date(arguments = '.') test.run(program = test.workpath('foo'), stdout = "foo.c\n") test.must_exist(lib_static_lib) test.must_exist(lib_shared_dll) test.pass_test() # Local Variables: # tab-width:4 # indent-tabs-mode:nil # End: # vim: set expandtab tabstop=4 shiftwidth=4: