diff --git a/libstdc++-v3/mkcheck.in b/libstdc++-v3/mkcheck.in index 9d676e8c85c..1eaa18df21b 100755 --- a/libstdc++-v3/mkcheck.in +++ b/libstdc++-v3/mkcheck.in @@ -382,7 +382,7 @@ test_file() #printf "\n: " >> $LOG_FILE printf "\n" >> $LOG_FILE COMP_TIME_START=$($TEST_DIR/printnow) - $compiler_invocation >> $LOG_FILE 2>&1 + $compiler_invocation COMP_TIME_END=$($TEST_DIR/printnow) if [ $COMP_TIME_START -lt $COMP_TIME_END ]; then @@ -427,6 +427,7 @@ test_file() fi else # the file did not compile/link. + $compiler_invocation >> $LOG_FILE 2>&1 RESULT="-b" TEXT="0" DATA="0" diff --git a/libstdc++-v3/testsuite/23_containers/vector_ctor.cc b/libstdc++-v3/testsuite/23_containers/vector_ctor.cc index 02f9bdf181e..10a244f533b 100644 --- a/libstdc++-v3/testsuite/23_containers/vector_ctor.cc +++ b/libstdc++-v3/testsuite/23_containers/vector_ctor.cc @@ -51,7 +51,7 @@ template class std::vector< A >; // libstdc++/102 -void test02 +void test02() { std::vector v1; std::vector v2 (v1);