diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2000-11-22 02:15:49 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-11-22 02:15:49 +0000 |
commit | 5388a89aacddc944dc4d554379bb7ea173e209bc (patch) | |
tree | c40fd2d2661b6f027781c7007979efcbf9183974 | |
parent | cac16ef9dadc3db4529dbcc204d13101f3e131b4 (diff) | |
download | gcc-5388a89aacddc944dc4d554379bb7ea173e209bc.zip gcc-5388a89aacddc944dc4d554379bb7ea173e209bc.tar.gz gcc-5388a89aacddc944dc4d554379bb7ea173e209bc.tar.bz2 |
mkcheck.in (explanation): Retain output of all failing compiles.
2000-11-21 Loren J. Rittle <ljrittle@acm.org>
* mkcheck.in (explanation): Retain output of all failing
compiles. Don't add gratuitous space to the log file.
From-SVN: r37639
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rwxr-xr-x | libstdc++-v3/mkcheck.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2c020f7..ea4e99b 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2000-11-21 Loren J. Rittle <ljrittle@acm.org> + + * mkcheck.in (explanation): Retain output of all failing + compiles. Don't add gratuitous space to the log file. + 2000-11-21 Benjamin Kosnik <bkoz@purist.soma.redhat.com> * src/strstream.cc: Adjust includes. diff --git a/libstdc++-v3/mkcheck.in b/libstdc++-v3/mkcheck.in index b4b38e1..9bacd4f 100755 --- a/libstdc++-v3/mkcheck.in +++ b/libstdc++-v3/mkcheck.in @@ -375,7 +375,6 @@ test_file() # eventually have to calculate time_t anyhow. Or 3) just grab two # time_t's (no more overhead than grabbing two date(1)'s). compiler_invocation="$LTCXX $S_FLAG $SRC_NAME -o $EXENAME $LIBS" - printf "\n" >> $LOG_FILE COMP_TIME_START=$($TEST_DIR/printnow) $compiler_invocation >> compile.out 2>&1 COMP_TIME_END=$($TEST_DIR/printnow) @@ -423,6 +422,7 @@ test_file() fi else # the file did not compile/link. + printf "\n" >> $LOG_FILE `cat compile.out > $LOG_FILE` rm compile.out RESULT="-b" |