diff options
author | Phil Edwards <phil@codesourcery.com> | 2004-02-29 12:57:33 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2004-02-29 12:57:33 +0000 |
commit | 8b425082620f9718aa9ac08fe3145c44eb8cad94 (patch) | |
tree | e9a467908eda669bb4c9c6e313b3d3ece8f53a0a | |
parent | 832a3292d9cb0b3840b5627a08b089ee9f3a613b (diff) | |
download | gcc-8b425082620f9718aa9ac08fe3145c44eb8cad94.zip gcc-8b425082620f9718aa9ac08fe3145c44eb8cad94.tar.gz gcc-8b425082620f9718aa9ac08fe3145c44eb8cad94.tar.bz2 |
Makefile.am (check-abi, [...]): Copy the summary file to the logfile.
2004-02-29 Phil Edwards <phil@codesourcery.com>
* testsuite/Makefile.am (check-abi, check-abi-verbose): Copy
the summary file to the logfile.
* testsuite/Makefile.in: Regenerate.
From-SVN: r78647
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/Makefile.am | 10 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/Makefile.in | 10 |
3 files changed, 18 insertions, 8 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 44f6fcc..1e508e9 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2004-02-29 Phil Edwards <phil@codesourcery.com> + + * testsuite/Makefile.am (check-abi, check-abi-verbose): Copy + the summary file to the logfile. + * testsuite/Makefile.in: Regenerate. + 2004-02-28 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> * config/cpu/hppa/atomicity.h (__atomic_add): Make first argument diff --git a/libstdc++-v3/testsuite/Makefile.am b/libstdc++-v3/testsuite/Makefile.am index 0fa3732..e22cbb7 100644 --- a/libstdc++-v3/testsuite/Makefile.am +++ b/libstdc++-v3/testsuite/Makefile.am @@ -100,12 +100,14 @@ if GLIBCXX_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} \ - 2>&1 | tee libstdc++-abi.sum) + -@./abi_check --check ./current_symbols.txt ${baseline_file} \ + 2>&1 | tee libstdc++-abi.sum + -@cp libstdc++-abi.sum libstdc++-abi.log check-abi-verbose: abi_check baseline_symbols current_symbols.txt - -@(./abi_check --check-verbose ./current_symbols.txt ${baseline_file} \ - 2>&1 | tee libstdc++-abi.sum) + -@./abi_check --check-verbose ./current_symbols.txt ${baseline_file} \ + 2>&1 | tee libstdc++-abi.sum + -@cp libstdc++-abi.sum libstdc++-abi.log else check-abi: diff --git a/libstdc++-v3/testsuite/Makefile.in b/libstdc++-v3/testsuite/Makefile.in index cfa2e2e..55486b4 100644 --- a/libstdc++-v3/testsuite/Makefile.in +++ b/libstdc++-v3/testsuite/Makefile.in @@ -607,12 +607,14 @@ new-abi-baseline: # Use 'new-abi-baseline' to create an initial symbol file. Then run # '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++-abi.sum) +@GLIBCXX_TEST_ABI_TRUE@ -@./abi_check --check ./current_symbols.txt ${baseline_file} \ +@GLIBCXX_TEST_ABI_TRUE@ 2>&1 | tee libstdc++-abi.sum +@GLIBCXX_TEST_ABI_TRUE@ -@cp libstdc++-abi.sum libstdc++-abi.log @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++-abi.sum) +@GLIBCXX_TEST_ABI_TRUE@ -@./abi_check --check-verbose ./current_symbols.txt ${baseline_file} \ +@GLIBCXX_TEST_ABI_TRUE@ 2>&1 | tee libstdc++-abi.sum +@GLIBCXX_TEST_ABI_TRUE@ -@cp libstdc++-abi.sum libstdc++-abi.log @GLIBCXX_TEST_ABI_FALSE@check-abi: @GLIBCXX_TEST_ABI_FALSE@check-abi-verbose: |