summaryrefslogtreecommitdiffstats
path: root/test/dependency-cycle.py
diff options
context:
space:
mode:
authordirkbaechle <devnull@localhost>2012-09-27 22:35:09 (GMT)
committerdirkbaechle <devnull@localhost>2012-09-27 22:35:09 (GMT)
commita6d1f2c5f7282a4c25bc20059054cbc0a6d9a688 (patch)
tree1781448eb906652d808ea4bf50fdda4312fe23c1 /test/dependency-cycle.py
parentedbb8113bf8737e7bc77a4f23d7fd41a44dca5a6 (diff)
downloadSCons-a6d1f2c5f7282a4c25bc20059054cbc0a6d9a688.zip
SCons-a6d1f2c5f7282a4c25bc20059054cbc0a6d9a688.tar.gz
SCons-a6d1f2c5f7282a4c25bc20059054cbc0a6d9a688.tar.bz2
- several smaller fixes to get all tests running under Buildbot again
Diffstat (limited to 'test/dependency-cycle.py')
-rw-r--r--test/dependency-cycle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dependency-cycle.py b/test/dependency-cycle.py
index 42c9392..a555d76 100644
--- a/test/dependency-cycle.py
+++ b/test/dependency-cycle.py
@@ -50,8 +50,8 @@ f1(void)
test.run(arguments = ".", stderr=r"""
scons: \*\*\* Found dependency cycle\(s\):
- .*foo1.* -> .*foo3.* -> .*foo2.* -> .*foo1.*
- .*foo3.* -> .*foo2.* -> .*foo1.* -> .*foo3.*
+ .*foo(1|3|2).* -> .*foo(3|2|1).* -> .*foo(2|1|3).* -> .*foo(1|3|2).*
+ .*foo(3|1|2).* -> .*foo(2|3|1).* -> .*foo(1|2|3).* -> .*foo(3|1|2).*
.*
""", status=2)