#!/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 that various ways of getting at a an sconsign file written with the default dblite module and default .dblite suffix work correctly. """ import TestSConsign test = TestSConsign.TestSConsign(match = TestSConsign.match_re) test.subdir('sub1', 'sub2') test.write('SConstruct', """ SConsignFile('my_sconsign') SourceSignatures('timestamp') TargetSignatures('content') env1 = Environment(PROGSUFFIX = '.exe', OBJSUFFIX = '.obj') env1.Program('sub1/hello.c') env2 = env1.Clone(CPPPATH = ['sub2']) env2.Program('sub2/hello.c') """) test.write(['sub1', 'hello.c'], r"""\ #include #include int main(int argc, char *argv[]) { argv[argc++] = "--"; printf("sub1/hello.c\n"); exit (0); } """) test.write(['sub2', 'hello.c'], r"""\ #include #include #include #include int main(int argc, char *argv[]) { argv[argc++] = "--"; printf("sub2/goodbye.c\n"); exit (0); } """) test.write(['sub2', 'inc1.h'], r"""\ #define STRING1 "inc1.h" """) test.write(['sub2', 'inc2.h'], r"""\ #define STRING2 "inc2.h" """) test.sleep() test.run(arguments = '. --max-drift=1') expect = """\ === sub1: hello.exe: \d+ None \d+ \d+ hello.obj: \d+ hello.obj: \d+ None \d+ \d+ hello.c: \d+ """ expect_r = """\ === sub1: hello.exe: \d+ None '\S+ \S+ [ \d]\d \d\d:\d\d:\d\d \d\d\d\d' \d+ hello.obj: \d+ hello.obj: \d+ None '\S+ \S+ [ \d]\d \d\d:\d\d:\d\d \d\d\d\d' \d+ hello.c: \d+ """ common_flags = '-e hello.exe -e hello.obj -d sub1' test.run_sconsign(arguments = "%s my_sconsign" % common_flags, stdout = expect) test.run_sconsign(arguments = "%s my_sconsign.dblite" % common_flags, stdout = expect) test.run_sconsign(arguments = "%s -f dblite my_sconsign" % common_flags, stdout = expect) test.run_sconsign(arguments = "%s -f dblite my_sconsign.dblite" % common_flags, stdout = expect) test.run_sconsign(arguments = "%s -r -f dblite my_sconsign" % common_flags, stdout = expect_r) test.run_sconsign(arguments = "%s -r -f dblite my_sconsign.dblite" % common_flags, stdout = expect_r) test.pass_test()