#!/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__" import os import os.path import re import sys import time import TestCmd import TestSCons test = TestSCons.TestSCons(match = TestCmd.match_re) if sys.platform != 'win32': msg = "Skipping Visual C/C++ test on non-Windows platform '%s'\n" % sys.platform test.skip_test(msg) ##### # Test the basics test.write('SConstruct',""" env=Environment() env['PDB'] = File('test.pdb') env['PCHSTOP'] = 'StdAfx.h' env['PCH'] = env.PCH('StdAfx.cpp')[0] env.Program('test', ['test.cpp', env.RES('test.rc')], LIBS=['user32']) env.Object('fast', 'foo.cpp') env.Object('slow', 'foo.cpp', PCH=0) """) test.write('test.cpp', ''' #include "StdAfx.h" #include "resource.h" int main(void) { char test[1024]; LoadString(GetModuleHandle(NULL), IDS_TEST, test, sizeof(test)); printf("%d %s\\n", IDS_TEST, test); return 0; } ''') test.write('test.rc', ''' #include "resource.h" STRINGTABLE DISCARDABLE BEGIN IDS_TEST "test 1" END ''') test.write('resource.h', ''' #define IDS_TEST 2001 ''') test.write('foo.cpp', ''' #include "StdAfx.h" ''') test.write('StdAfx.h', ''' #include #include #include "resource.h" ''') test.write('StdAfx.cpp', ''' #include "StdAfx.h" ''') # Visual Studio 8 has deprecated the /Yd option and prints warnings # about it, so ignore stderr when running SCons. test.run(arguments='test.exe', stderr=None) test.must_exist(test.workpath('test.exe')) test.must_exist(test.workpath('test.res')) test.must_exist(test.workpath('test.pdb')) test.must_exist(test.workpath('StdAfx.pch')) test.must_exist(test.workpath('StdAfx.obj')) test.run(program=test.workpath('test.exe'), stdout='2001 test 1\n') test.write('resource.h', ''' #define IDS_TEST 2002 ''') test.run(arguments='test.exe', stderr=None) test.run(program=test.workpath('test.exe'), stdout='2002 test 1\n') test.write('test.rc', ''' #include "resource.h" STRINGTABLE DISCARDABLE BEGIN IDS_TEST "test 2" END ''') test.run(arguments='test.exe', stderr=None) test.run(program=test.workpath('test.exe'), stdout='2002 test 2\n') test.run(arguments='-c .') test.must_not_exist(test.workpath('test.exe')) test.must_not_exist(test.workpath('test.pdb')) test.must_not_exist(test.workpath('test.res')) test.must_not_exist(test.workpath('StdAfx.pch')) test.must_not_exist(test.workpath('StdAfx.obj')) test.run(arguments='test.exe', stderr=None) test.must_exist(test.workpath('test.pdb')) test.must_exist(test.workpath('StdAfx.pch')) test.must_exist(test.workpath('StdAfx.obj')) test.run(arguments='-c test.pdb') test.must_not_exist(test.workpath('test.exe')) test.must_not_exist(test.workpath('test.obj')) test.must_not_exist(test.workpath('test.pdb')) test.must_not_exist(test.workpath('StdAfx.pch')) test.must_not_exist(test.workpath('StdAfx.obj')) test.run(arguments='StdAfx.pch', stderr=None) test.must_not_exist(test.workpath('test.pdb')) test.must_exist(test.workpath('StdAfx.pch')) test.must_exist(test.workpath('StdAfx.obj')) test.run(arguments='-c test.exe') test.must_not_exist(test.workpath('test.exe')) test.must_not_exist(test.workpath('test.obj')) test.must_not_exist(test.workpath('test.pdb')) test.must_not_exist(test.workpath('StdAfx.pch')) test.must_not_exist(test.workpath('StdAfx.obj')) test.run(arguments='test.obj', stderr=None) test.must_not_exist(test.workpath('test.pdb')) test.must_exist(test.workpath('test.obj')) start = time.time() test.run(arguments='fast.obj', stderr=None) fast = time.time() - start start = time.time() test.run(arguments='slow.obj', stderr=None) slow = time.time() - start # using precompiled headers should be significantly faster assert fast < slow*0.8 # Modifying resource.h should cause both the resource and precompiled header to be rebuilt: test.write('resource.h', ''' #define IDS_TEST 2003 ''') test.not_up_to_date(arguments='test.res', stderr=None) test.not_up_to_date(arguments='StdAfx.pch', stderr=None) test.not_up_to_date(arguments='test.exe', stderr=None) test.run(program=test.workpath('test.exe'), stdout='2003 test 2\n') ########## # Test a hierarchical build test.subdir('src', 'build', 'out') test.write('SConstruct',""" BuildDir('build', 'src', duplicate=0) SConscript('build/SConscript') """) test.write('src/SConscript',""" env=Environment() env['PCH'] = 'StdAfx.pch' env['PDB'] = '#out/test.pdb' env['PCHSTOP'] = 'StdAfx.h' env.PCH('StdAfx.cpp') env.Program('#out/test.exe', 'test.cpp') """) test.write('src/test.cpp', ''' #include "StdAfx.h" int main(void) { return 1; } ''') test.write('src/StdAfx.h', ''' #include ''') test.write('src/StdAfx.cpp', ''' #include "StdAfx.h" ''') test.run(arguments='out', stderr=None) test.must_exist(test.workpath('out/test.pdb')) test.must_exist(test.workpath('build/StdAfx.pch')) test.must_exist(test.workpath('build/StdAfx.obj')) test.run(arguments='-c out') test.must_not_exist(test.workpath('out/test.pdb')) test.must_not_exist(test.workpath('build/StdAfx.pch')) test.must_not_exist(test.workpath('build/StdAfx.obj')) ##### # Test error reporting SConstruct_path = test.workpath('SConstruct') test.write(SConstruct_path, """\ env = Environment() env['PDB'] = File('test.pdb') env['PCH'] = env.PCH('StdAfx.cpp')[0] env.Program('test', 'test.cpp') """) expect_stderr = r''' scons: \*\*\* The PCHSTOP construction must be defined if PCH is defined. File "%s", line 4, in \? ''' % re.escape(SConstruct_path) test.run(status=2, stderr=expect_stderr) test.write(SConstruct_path, """\ env = Environment() env['PDB'] = File('test.pdb') env['PCHSTOP'] = File('StdAfx.h') env['PCH'] = env.PCH('StdAfx.cpp')[0] env.Program('test', 'test.cpp') """) expect_stderr = r''' scons: \*\*\* The PCHSTOP construction variable must be a string: .+ File "%s", line 5, in \? ''' % re.escape(SConstruct_path) test.run(status=2, stderr=expect_stderr) test.pass_test()