summaryrefslogtreecommitdiff
path: root/test/Program.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-08-14 11:17:14 +0000
committerSteven Knight <knight@baldmt.com>2001-08-14 11:17:14 +0000
commit7884cffaf3380a66a999ae8db12e0418f96993c0 (patch)
tree98d0b177f9b53719dc070c00f52332f653b65049 /test/Program.py
parent062cbfc18a81e3b0c4147c4ead7cebff5e18063f (diff)
downloadscons-7884cffaf3380a66a999ae8db12e0418f96993c0.tar.gz
Clean up tests.
Diffstat (limited to 'test/Program.py')
-rw-r--r--test/Program.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/Program.py b/test/Program.py
new file mode 100644
index 00000000..78edf922
--- /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()