diff options
author | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-11-21 06:17:15 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-11-21 06:17:15 +0000 |
commit | cd9c4fee8e232dd32854527f9025fda382e27550 (patch) | |
tree | dee8b957ae8cd28cf5fa3e6bf5c5d435fe281e99 | |
parent | beac9b932c42ba0e22d92b92ccb26117354aa564 (diff) | |
download | gcc-cd9c4fee8e232dd32854527f9025fda382e27550.zip gcc-cd9c4fee8e232dd32854527f9025fda382e27550.tar.gz gcc-cd9c4fee8e232dd32854527f9025fda382e27550.tar.bz2 |
mkcheck.in (explanation): Don't paste output of passing compiles into log file.
2000-11-20 Benjamin Kosnik <bkoz@redhat.com>
* mkcheck.in (explanation): Don't paste output of passing compiles
into log file.
* testsuite/23_containers/vector_ctor.cc (test02): Fix thinko.
From-SVN: r37604
-rwxr-xr-x | libstdc++-v3/mkcheck.in | 3 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/23_containers/vector_ctor.cc | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/libstdc++-v3/mkcheck.in b/libstdc++-v3/mkcheck.in index 9d676e8..1eaa18d 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 02f9bdf..10a244f 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<B> >; // libstdc++/102 -void test02 +void test02() { std::vector<int> v1; std::vector<int> v2 (v1); |