summaryrefslogtreecommitdiffstats
path: root/test/Alias.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Alias.py')
-rw-r--r--test/Alias.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Alias.py b/test/Alias.py
index c966933..f965071 100644
--- a/test/Alias.py
+++ b/test/Alias.py
@@ -155,5 +155,16 @@ test.run(arguments = 'f1.out',
test.up_to_date(arguments = 'f1.out')
+test.write('SConstruct', """
+env=Environment()
+SetBuildSignatureType('content')
+env.Alias('C', 'D')
+env.Alias('B', 'C')
+env.Alias('A', 'B')
+""")
+
+test.run(arguments='A',
+ stderr="scons: \\*\\*\\* No Builder for target `D', needed by `C'. Stop.\n",
+ status=2)
test.pass_test()