diff options
author | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2003-06-27 18:13:12 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2003-06-27 18:13:12 +0000 |
commit | f1a22109ec794a723721cb437ed29e7d23ee9a3e (patch) | |
tree | c89331de4468963f883f4d8eb14ae696e02d8231 | |
parent | 7e4fb06a5182286640bf73410d09ab324c5e73ad (diff) | |
download | gcc-f1a22109ec794a723721cb437ed29e7d23ee9a3e.zip gcc-f1a22109ec794a723721cb437ed29e7d23ee9a3e.tar.gz gcc-f1a22109ec794a723721cb437ed29e7d23ee9a3e.tar.bz2 |
[multiple changes]
2003-06-27 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/testsuite_performance.h (__gnu_cxx_test): Change
output name to libstdc++-v3-performance.sum.
* testsuite/Makefile.am (CLEANFILES): Remove .performance.
* testsuite/Makefile.in: Regenerate.
2003-06-27 Matthias Klose <doko@debian.org>
* testsuite/Makefile.am (check-abi, check-abi-verbose): Save
output of abi-check in libstdc++-v3-abi.sum.
* testsuite/Makefile.in: Regenerate.
From-SVN: r68593
-rw-r--r-- | libstdc++-v3/ChangeLog | 13 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/Makefile.am | 9 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/Makefile.in | 9 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/testsuite_performance.h | 2 |
4 files changed, 26 insertions, 7 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index a3a842b..d528de9 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,16 @@ +2003-06-27 Benjamin Kosnik <bkoz@redhat.com> + + * testsuite/testsuite_performance.h (__gnu_cxx_test): Change + output name to libstdc++-v3-performance.sum. + * testsuite/Makefile.am (CLEANFILES): Remove .performance. + * testsuite/Makefile.in: Regenerate. + +2003-06-27 Matthias Klose <doko@debian.org> + + * testsuite/Makefile.am (check-abi, check-abi-verbose): Save + output of abi-check in libstdc++-v3-abi.sum. + * testsuite/Makefile.in: Regenerate. + 2003-06-27 Krister Walfridsson <cato@df.lth.se> * config/os/bsd/netbsd/ctype_noninline.h diff --git a/libstdc++-v3/testsuite/Makefile.am b/libstdc++-v3/testsuite/Makefile.am index 06705b5..cd6245b 100644 --- a/libstdc++-v3/testsuite/Makefile.am +++ b/libstdc++-v3/testsuite/Makefile.am @@ -115,10 +115,13 @@ if GLIBCPP_TEST_ABI # Use 'new-abi-baseline' to create an initial symbol file. Then run # 'check-abi' to test for changes against that file. check-abi: abi_check baseline_symbols current_symbols.txt - -@(./abi_check --check ./current_symbols.txt ${baseline_file}) + -@(./abi_check --check ./current_symbols.txt ${baseline_file} \ + 2>&1 | tee libstdc++-v3-abi.sum) check-abi-verbose: abi_check baseline_symbols current_symbols.txt - -@(./abi_check --check-verbose ./current_symbols.txt ${baseline_file}) + -@(./abi_check --check-verbose ./current_symbols.txt ${baseline_file} \ + 2>&1 | tee libstdc++-v3-abi.sum) + else check-abi: check-abi-verbose: @@ -152,4 +155,4 @@ check-performance: ${performance_script} # By adding these files here, automake will remove them for 'make clean' CLEANFILES = *.txt *.tst *.exe core* filebuf_* tmp* ostream_* *.log *.sum \ - testsuite_* site.exp abi_check baseline_symbols *.performance + testsuite_* site.exp abi_check baseline_symbols diff --git a/libstdc++-v3/testsuite/Makefile.in b/libstdc++-v3/testsuite/Makefile.in index 2850829..ae6a4e2 100644 --- a/libstdc++-v3/testsuite/Makefile.in +++ b/libstdc++-v3/testsuite/Makefile.in @@ -198,7 +198,7 @@ performance_script = ${glibcpp_srcdir}/scripts/check_performance # By adding these files here, automake will remove them for 'make clean' CLEANFILES = *.txt *.tst *.exe core* filebuf_* tmp* ostream_* *.log *.sum \ - testsuite_* site.exp abi_check baseline_symbols *.performance + testsuite_* site.exp abi_check baseline_symbols CONFIG_HEADER = ../config.h CONFIG_CLEAN_FILES = @@ -521,10 +521,13 @@ new-abi-baseline: # Use 'new-abi-baseline' to create an initial symbol file. Then run # 'check-abi' to test for changes against that file. @GLIBCPP_TEST_ABI_TRUE@check-abi: abi_check baseline_symbols current_symbols.txt -@GLIBCPP_TEST_ABI_TRUE@ -@(./abi_check --check ./current_symbols.txt ${baseline_file}) +@GLIBCPP_TEST_ABI_TRUE@ -@(./abi_check --check ./current_symbols.txt ${baseline_file} \ +@GLIBCPP_TEST_ABI_TRUE@ 2>&1 | tee libstdc++-v3-abi.sum) @GLIBCPP_TEST_ABI_TRUE@check-abi-verbose: abi_check baseline_symbols current_symbols.txt -@GLIBCPP_TEST_ABI_TRUE@ -@(./abi_check --check-verbose ./current_symbols.txt ${baseline_file}) +@GLIBCPP_TEST_ABI_TRUE@ -@(./abi_check --check-verbose ./current_symbols.txt ${baseline_file} \ +@GLIBCPP_TEST_ABI_TRUE@ 2>&1 | tee libstdc++-v3-abi.sum) + @GLIBCPP_TEST_ABI_FALSE@check-abi: @GLIBCPP_TEST_ABI_FALSE@check-abi-verbose: check-script: ${survey_script} diff --git a/libstdc++-v3/testsuite/testsuite_performance.h b/libstdc++-v3/testsuite/testsuite_performance.h index 1ad0251..b55ed91 100644 --- a/libstdc++-v3/testsuite/testsuite_performance.h +++ b/libstdc++-v3/testsuite/testsuite_performance.h @@ -170,7 +170,7 @@ namespace __gnu_cxx_test { const char space = ' '; const char tab = '\t'; - const char* name = "libstdc++-v3.performance"; + const char* name = "libstdc++-v3-performance.sum"; std::string::const_iterator i = file.begin() + file.find_last_of('/') + 1; std::string testname(i, file.end()); |