Boost logo

Boost-Commit :

From: jurko.gospodnetic_at_[hidden]
Date: 2008-05-01 20:57:30


Author: jurko
Date: 2008-05-01 20:57:29 EDT (Thu, 01 May 2008)
New Revision: 45004
URL: http://svn.boost.org/trac/boost/changeset/45004

Log:
Minor stylistic changes.
Text files modified:
   trunk/tools/build/v2/test/sort_rule.py | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/tools/build/v2/test/sort_rule.py
==============================================================================
--- trunk/tools/build/v2/test/sort_rule.py (original)
+++ trunk/tools/build/v2/test/sort_rule.py 2008-05-01 20:57:29 EDT (Thu, 01 May 2008)
@@ -20,7 +20,7 @@
 def testSORTCorrectness():
     """Testing that Boost Jam's SORT builtin rule actually sorts correctly.
     """
- t = BoostBuild.Tester()
+ t = BoostBuild.Tester("-f test.jam -d1", pass_toolset=False, use_test_config=False)
 
     t.write("test.jam", """
 NOCARE all ;
@@ -38,7 +38,7 @@
 }
 """)
 
- t.run_build_system("-d1 -f test.jam", pass_toolset=False, use_test_config=False)
+ t.run_build_system()
     t.expect_output_line("starting up")
     t.expect_output_line("done")
     t.expect_output_line("SORT error", False)
@@ -57,7 +57,7 @@
     """Regression test making sure Boost Jam's SORT builtin rule does not get
     quadratic behaviour again in this use case.
     """
- t = BoostBuild.Tester()
+ t = BoostBuild.Tester("-f test.jam -d1", pass_toolset=False, use_test_config=False)
 
     f = open(t.workpath("test.jam"), "w")
     print >> f, "data = "
@@ -75,7 +75,7 @@
 """
     f.close()
 
- t.run_build_system("-d1 -f test.jam", pass_toolset=False, use_test_config=False, expected_duration=1)
+ t.run_build_system(expected_duration=1)
     t.expect_output_line("starting up")
     t.expect_output_line("done")
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk