diff options
author | Steven Knight <knight@baldmt.com> | 2002-07-29 23:22:50 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-07-29 23:22:50 (GMT) |
commit | 7b142dbd32c3673ae57bda1fea98a8d8e3f7d0e5 (patch) | |
tree | 852f6c632d1f018e22d22aa459f2c9753c66ba59 /test/Repository | |
parent | cd6d3c9e4f76592845cf32e11cee9a04c1b2f0f6 (diff) | |
download | SCons-7b142dbd32c3673ae57bda1fea98a8d8e3f7d0e5.zip SCons-7b142dbd32c3673ae57bda1fea98a8d8e3f7d0e5.tar.gz SCons-7b142dbd32c3673ae57bda1fea98a8d8e3f7d0e5.tar.bz2 |
Multiple directory .h includes in Repositories.
Diffstat (limited to 'test/Repository')
-rw-r--r-- | test/Repository/multi-dir.py | 146 |
1 files changed, 146 insertions, 0 deletions
diff --git a/test/Repository/multi-dir.py b/test/Repository/multi-dir.py new file mode 100644 index 0000000..a588814 --- /dev/null +++ b/test/Repository/multi-dir.py @@ -0,0 +1,146 @@ +#!/usr/bin/env python +# +# Copyright (c) 2001, 2002 Steven Knight +# +# 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 sys +import TestSCons + +if sys.platform == 'win32': + _exe = '.exe' +else: + _exe = '' + + + +test = TestSCons.TestSCons() + +# +test.subdir('work', + ['work', 'src'], + ['work', 'include'], + 'repository', + ['repository', 'src'], + ['repository', 'include']) + +# +workpath_repository = test.workpath('repository') +work_include_my_string_h = test.workpath('work', 'include', 'my_string.h') +work_src_xxx = test.workpath('work', 'src', 'xxx') +repository_src_xxx = test.workpath('repository', 'src', 'xxx') + +opts = "-Y " + workpath_repository + +# +test.write(['repository', 'SConstruct'], """ +env = Environment(CPPPATH = ['#src', '#include']) +SConscript('src/SConscript', "env") +""") + +test.write(['repository', 'src', 'SConscript'], """ +Import("env") +env.Program(target = 'xxx', source = 'main.c') +""") + +test.write(['repository', 'include', 'my_string.h'], r""" +#define MY_STRING "repository/include/my_string.h" +""") + +test.write(['repository', 'src', 'include.h'], r""" +#include <my_string.h> +#define LOCAL_STRING "repository/src/include.h" +""") + +test.write(['repository', 'src', 'main.c'], r""" +#include <include.h> +int +main(int argc, char *argv[]) +{ + argv[argc++] = "--"; + printf("%s\n", MY_STRING); + printf("%s\n", LOCAL_STRING); + printf("repository/src/main.c\n"); + exit (0); +} +""") + +# +test.run(chdir = 'repository', arguments = ".") + +test.run(program = repository_src_xxx, stdout = +"""repository/include/my_string.h +repository/src/include.h +repository/src/main.c +""") + +# Double-check that the Repository is up-to-date. +#test.up_to_date(chdir = 'repository', arguments = ".") + +# Make the repository non-writable, +# so we'll detect if we try to write into it accidentally. +test.writable('repository', 0) + +# Because the Repository is completely up-to-date, +# a build in an empty work directory should also be up-to-date. +test.up_to_date(chdir = 'work', options = opts, arguments = ".") + +test.write(['work', 'include', 'my_string.h'], r""" +#define MY_STRING "work/include/my_string.h" +""") + +test.run(chdir = 'work', options = opts, arguments = ".") + +test.run(program = work_src_xxx, stdout = +"""work/include/my_string.h +repository/src/include.h +repository/src/main.c +""") + +test.write(['work', 'src', 'include.h'], r""" +#include <my_string.h> +#define LOCAL_STRING "work/src/include.h" +""") + +test.run(chdir = 'work', options = opts, arguments = ".") + +test.run(program = work_src_xxx, stdout = +"""work/include/my_string.h +work/src/include.h +repository/src/main.c +""") + +# +test.unlink(work_include_my_string_h) + +test.run(chdir = 'work', options = opts, arguments = ".") + +test.run(program = work_src_xxx, stdout = +"""repository/include/my_string.h +work/src/include.h +repository/src/main.c +""") + +# +test.pass_test() +__END__ |