summaryrefslogtreecommitdiffstats
path: root/test/Program.py
diff options
context:
space:
mode:
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 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()