diff options
author | Steven Knight <knight@baldmt.com> | 2001-08-14 11:17:14 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-08-14 11:17:14 (GMT) |
commit | 7884cffaf3380a66a999ae8db12e0418f96993c0 (patch) | |
tree | 98d0b177f9b53719dc070c00f52332f653b65049 /test/Program.py | |
parent | 062cbfc18a81e3b0c4147c4ead7cebff5e18063f (diff) | |
download | SCons-7884cffaf3380a66a999ae8db12e0418f96993c0.zip SCons-7884cffaf3380a66a999ae8db12e0418f96993c0.tar.gz SCons-7884cffaf3380a66a999ae8db12e0418f96993c0.tar.bz2 |
Clean up tests.
Diffstat (limited to 'test/Program.py')
-rw-r--r-- | test/Program.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/Program.py b/test/Program.py new file mode 100644 index 0000000..78edf92 --- /dev/null +++ b/test/Program.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python + +__revision__ = "test/Program.py __REVISION__ __DATE__ __DEVELOPER__" + +import TestCmd + +test = TestCmd.TestCmd(program = 'scons.py', + workdir = '', + interpreter = 'python') + +test.write('SConstruct', """ +env = Environment() +env.Program(target = 'foo', source = 'foo.c') +""") + +test.write('foo.c', """ +int +main(int argc, char *argv[]) +{ + printf("foo.c\n"); + exit (0); +} +""") + +test.run(chdir = '.', arguments = 'foo') + +test.run(program = test.workpath('foo')) + +test.fail_test(test.stdout() != "foo.c\n") + +test.pass_test() |