Last change
on this file since 32 was
29,
checked in by landauf, 17 years ago
|
updated boost from 1_33_1 to 1_34_1
|
File size:
555 bytes
|
Line | |
---|
1 | #!/usr/bin/python |
---|
2 | |
---|
3 | # Copyright 2003 Vladimir Prus |
---|
4 | # Distributed under the Boost Software License, Version 1.0. |
---|
5 | # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) |
---|
6 | |
---|
7 | # Regression test: when directory of project root contained regex metacharacters, |
---|
8 | # Boost.Build failed to work. Bug reported by Michael Stevens |
---|
9 | |
---|
10 | from BoostBuild import Tester, List |
---|
11 | |
---|
12 | t = Tester() |
---|
13 | |
---|
14 | t.write("bad[abc]dirname/Jamfile", """ |
---|
15 | """) |
---|
16 | |
---|
17 | t.write("bad[abc]dirname/project-root.jam", """ |
---|
18 | """) |
---|
19 | |
---|
20 | t.run_build_system(subdir="bad[abc]dirname") |
---|
21 | |
---|
22 | t.cleanup() |
---|
23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.