mirror of
https://github.com/boostorg/build.git
synced 2026-02-10 23:32:20 +00:00
Related changes: * BoostBuild.Tester & TestCmd.TestCmd interfaces now accept external process parameters as a list of strings, thus avoiding problems with parsing arguments containing spaces. * Avoided a potential process hang in case an external process being run prints out enough output to fill up the OS's pipe buffer (OS would pause the process until someone read the data from the pipe but the testing framework would not do this until the process in question had terminated). [SVN r79448]
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
#!/usr/bin/python
|
|
|
|
# Copyright 2003 Dave Abrahams
|
|
# Copyright 2006 Rene Rivera
|
|
# Copyright 2003 Vladimir Prus
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
import BoostBuild
|
|
import os
|
|
import re
|
|
|
|
t = BoostBuild.Tester(["-d+1"], pass_toolset=0)
|
|
|
|
t.set_tree('module-actions')
|
|
|
|
expected_lines = [
|
|
"...found 4 targets...",
|
|
"...updating 3 targets...",
|
|
"A.act t1",
|
|
"A.act t1: X1-t1 ",
|
|
"B.act t1",
|
|
"B.act t1: X1-t1 X2-B ",
|
|
"act t1",
|
|
"act t1: X1-t1 X2-global X3-global ",
|
|
"A.act t2",
|
|
"A.act t2: X1-A X2-t2 ",
|
|
"B.act t2",
|
|
"B.act t2: X2-t2 ",
|
|
"act t2",
|
|
"act t2: X1-global X2-t2 X3-global ",
|
|
"A.act t3",
|
|
"A.act t3: X1-A X3-t3 ",
|
|
"B.act t3",
|
|
"B.act t3: X2-B X3-t3 ",
|
|
"act t3",
|
|
"act t3: X1-global X2-global X3-t3 ",
|
|
"...updated 3 targets..."]
|
|
expected_lines.append("") # To add the trailing newline.
|
|
expected_output = "\n".join(expected_lines)
|
|
|
|
# On Unixes, call to 'echo 1 2 3 ' produces '1 2 3' (note the spacing)
|
|
# Accomodate for that fact.
|
|
if os.name != 'nt':
|
|
expected_output = re.sub(" +", " ", expected_output)
|
|
expected_output = re.sub(" +\n", "\n", expected_output)
|
|
|
|
t.run_build_system(stdout=expected_output)
|
|
t.expect_nothing_more()
|
|
t.cleanup()
|