summaryrefslogtreecommitdiff
path: root/test/Batch/SConstruct_changed_sources_alwaysBuild
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2016-01-15 21:41:29 -0800
committerWilliam Deegan <bill@baddogconsulting.com>2016-01-15 21:41:29 -0800
commit225d7bb2ddf52fb3005d8fa4b869c431b497ceb6 (patch)
treecf194977addcadbc7031db0b77210b8c163b688a /test/Batch/SConstruct_changed_sources_alwaysBuild
parentd1001edc5ff66395f9528c5f6551395ad9f7b517 (diff)
downloadscons-225d7bb2ddf52fb3005d8fa4b869c431b497ceb6.tar.gz
add testcase for tigris bug # 2622 - AlwaysBuild / MSVC regression
Diffstat (limited to 'test/Batch/SConstruct_changed_sources_alwaysBuild')
-rw-r--r--test/Batch/SConstruct_changed_sources_alwaysBuild8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Batch/SConstruct_changed_sources_alwaysBuild b/test/Batch/SConstruct_changed_sources_alwaysBuild
new file mode 100644
index 00000000..c260316c
--- /dev/null
+++ b/test/Batch/SConstruct_changed_sources_alwaysBuild
@@ -0,0 +1,8 @@
+# Testcase for tigris bug 2622
+
+object = Object('changed_sources_main.cpp')
+AlwaysBuild(object)
+
+program = Program('test', source = [object])
+
+Default(program)