diff --git a/doc/building.html b/doc/building.html
index fd101617..68b5576f 100644
--- a/doc/building.html
+++ b/doc/building.html
@@ -253,17 +253,16 @@ bjam -sTOOLS=
This will update all of the Boost.Python v1 test and example targets. The
- tests are relatively quiet by default. To get more-verbose output, you
+ tests are relatively verbose by default. To get less-verbose output, you
might try
bjam -sTOOLS=toolset -sPYTHON_TEST_ARGS=-v test
+"../../../more/getting_started.html#Tools">toolset
-sPYTHON_TEST_ARGS= test
- which will print each test's Python code with the expected output as it
- passes.
+ By default, PYTHON_TEST_ARGS is set to -v.
Though there are other approaches, the smoothest and most reliable way to
diff --git a/test/Jamfile b/test/Jamfile
index 32dc054f..55632135 100644
--- a/test/Jamfile
+++ b/test/Jamfile
@@ -69,7 +69,7 @@ rule bpl-test ( name ? : files * : requirements * )
}
}
- return [ boost-python-runtest $(name) : $(py) $(modules) : $(requirements) ] ;
+ return [ boost-python-runtest $(name) : $(py) $(modules) : $(requirements) : : -v ] ;
}
test-suite python
@@ -188,13 +188,12 @@ bpl-test crossmod_exception
[ run upcast.cpp ../../test/build/boost_test_exec_monitor py-unit-test ]
-[ run select_holder.cpp ../../test/build/boost_test_exec_monitor py-unit-test ]
+[ compile select_holder.cpp py-unit-test ]
[ run select_from_python_test.cpp ../src/converter/type_id.cpp
../../test/build/boost_test_exec_monitor py-unit-test ]
-[ run select_arg_to_python_test.cpp ../src/converter/type_id.cpp
-../../test/build/boost_test_exec_monitor py-unit-test ]
+[ compile select_arg_to_python_test.cpp py-unit-test ]
[ compile-fail ./raw_pyobject_fail1.cpp py-unit-test ]
[ compile-fail ./raw_pyobject_fail2.cpp py-unit-test ]