diff options
Diffstat (limited to 'test/CPPPATH/match-dir.py')
-rw-r--r-- | test/CPPPATH/match-dir.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CPPPATH/match-dir.py b/test/CPPPATH/match-dir.py index e1d2604..6ec30b4 100644 --- a/test/CPPPATH/match-dir.py +++ b/test/CPPPATH/match-dir.py @@ -29,10 +29,17 @@ Verify that we don't blow up if there's a directory name within $CPPPATH that matches a #include file name. """ +import sys + import TestSCons test = TestSCons.TestSCons() +# TODO(sgk): get this to work everywhere by using fake compilers +if sys.platform.find('sunos') != -1: + msg = 'SunOS C compiler does not handle this case; skipping test.\n' + test.skip_test(msg) + test.subdir(['src'], ['src', 'inc'], ['src', 'inc', 'inc2']) |