diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2003-08-08 15:24:00 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2003-08-08 15:24:00 +0000 |
commit | 258e7dbc94da329418134777af8b3b7f713045c0 (patch) | |
tree | bae4ddff000c8a60c7d679163a274c5a07f73829 | |
parent | 679c4092161b05666c0b9c22eaad90b0c4bb9b09 (diff) | |
download | gcc-258e7dbc94da329418134777af8b3b7f713045c0.zip gcc-258e7dbc94da329418134777af8b3b7f713045c0.tar.gz gcc-258e7dbc94da329418134777af8b3b7f713045c0.tar.bz2 |
Makefile.am (check-abi): Change libstdc++-v3 to libstdc++.
2003-08-08 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/Makefile.am (check-abi): Change libstdc++-v3 to libstdc++.
(check-abi-verbose): Same.
* testsuite/testsuite_performance.h (report_performance): Same.
From-SVN: r70249
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/Makefile.am | 4 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/Makefile.in | 4 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/testsuite_performance.h | 2 |
4 files changed, 11 insertions, 5 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 7c512ac..2f0d775 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2003-08-08 Benjamin Kosnik <bkoz@redhat.com> + + * testsuite/Makefile.am (check-abi): Change libstdc++-v3 to libstdc++. + (check-abi-verbose): Same. + * testsuite/testsuite_performance.h (report_performance): Same. + 2003-08-08 Loren J. Rittle <ljrittle@acm.org> * testsuite/testsuite_performance.h (__FreeBSD__): Add fake mallinfo. diff --git a/libstdc++-v3/testsuite/Makefile.am b/libstdc++-v3/testsuite/Makefile.am index cd181c2..ff2149e 100644 --- a/libstdc++-v3/testsuite/Makefile.am +++ b/libstdc++-v3/testsuite/Makefile.am @@ -109,11 +109,11 @@ if GLIBCXX_TEST_ABI # '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} \ - 2>&1 | tee libstdc++-v3-abi.sum) + 2>&1 | tee libstdc++-abi.sum) check-abi-verbose: abi_check baseline_symbols current_symbols.txt -@(./abi_check --check-verbose ./current_symbols.txt ${baseline_file} \ - 2>&1 | tee libstdc++-v3-abi.sum) + 2>&1 | tee libstdc++-abi.sum) else check-abi: diff --git a/libstdc++-v3/testsuite/Makefile.in b/libstdc++-v3/testsuite/Makefile.in index 374af04..4720fd2 100644 --- a/libstdc++-v3/testsuite/Makefile.in +++ b/libstdc++-v3/testsuite/Makefile.in @@ -598,11 +598,11 @@ new-abi-baseline: # 'check-abi' to test for changes against that file. @GLIBCXX_TEST_ABI_TRUE@check-abi: abi_check baseline_symbols current_symbols.txt @GLIBCXX_TEST_ABI_TRUE@ -@(./abi_check --check ./current_symbols.txt ${baseline_file} \ -@GLIBCXX_TEST_ABI_TRUE@ 2>&1 | tee libstdc++-v3-abi.sum) +@GLIBCXX_TEST_ABI_TRUE@ 2>&1 | tee libstdc++-abi.sum) @GLIBCXX_TEST_ABI_TRUE@check-abi-verbose: abi_check baseline_symbols current_symbols.txt @GLIBCXX_TEST_ABI_TRUE@ -@(./abi_check --check-verbose ./current_symbols.txt ${baseline_file} \ -@GLIBCXX_TEST_ABI_TRUE@ 2>&1 | tee libstdc++-v3-abi.sum) +@GLIBCXX_TEST_ABI_TRUE@ 2>&1 | tee libstdc++-abi.sum) @GLIBCXX_TEST_ABI_FALSE@check-abi: @GLIBCXX_TEST_ABI_FALSE@check-abi-verbose: diff --git a/libstdc++-v3/testsuite/testsuite_performance.h b/libstdc++-v3/testsuite/testsuite_performance.h index 625de57..9ec2f86 100644 --- a/libstdc++-v3/testsuite/testsuite_performance.h +++ b/libstdc++-v3/testsuite/testsuite_performance.h @@ -177,7 +177,7 @@ namespace __gnu_test { const char space = ' '; const char tab = '\t'; - const char* name = "libstdc++-v3-performance.sum"; + const char* name = "libstdc++-performance.sum"; std::string::const_iterator i = file.begin() + file.find_last_of('/') + 1; std::string testname(i, file.end()); |