diff options
author | Steven Knight <knight@baldmt.com> | 2002-04-16 03:24:39 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-04-16 03:24:39 (GMT) |
commit | bbdad76b308f2bc3a38da616ab8333e469c558c6 (patch) | |
tree | 65167c0d078ee5691a5db404ede041b16387d021 /test/SHCXX.py | |
parent | 1697d4399e8342fd3d2dbe02a67e03b4d2f835f0 (diff) | |
download | SCons-bbdad76b308f2bc3a38da616ab8333e469c558c6.zip SCons-bbdad76b308f2bc3a38da616ab8333e469c558c6.tar.gz SCons-bbdad76b308f2bc3a38da616ab8333e469c558c6.tar.bz2 |
Shared library test fixes. (Charles Crain)
Diffstat (limited to 'test/SHCXX.py')
-rw-r--r-- | test/SHCXX.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/SHCXX.py b/test/SHCXX.py index 0c3e2f2..5825491 100644 --- a/test/SHCXX.py +++ b/test/SHCXX.py @@ -50,11 +50,11 @@ test.write('SConstruct', """ foo = Environment() shcxx = foo.Dictionary('SHCXX') bar = Environment(SHCXX = r'%s wrapper.py ' + shcxx) -foo.Program(target = 'foo', source = 'foo.cc', shared = 1) -bar.Program(target = 'bar', source = 'bar.cc', shared = 1) +foo.Program(target = 'foo', source = 'foo.cpp', shared = 1) +bar.Program(target = 'bar', source = 'bar.cpp', shared = 1) """ % python) -test.write('foo.cc', r""" +test.write('foo.cpp', r""" #include <stdio.h> #include <stdlib.h> int @@ -66,7 +66,7 @@ main(int argc, char *argv[]) } """) -test.write('bar.cc', r""" +test.write('bar.cpp', r""" #include <stdio.h> #include <stdlib.h> int |