From 6728336267457f71da6261ab59e3fedd4f987d8d Mon Sep 17 00:00:00 2001 From: Benjamin Kosnik Date: Mon, 1 Mar 2004 17:42:01 +0000 Subject: [PATCH] test.html: Add multilib RUNTESTFLAGS example. 2004-03-01 Benjamin Kosnik * docs/html/test.html: Add multilib RUNTESTFLAGS example. * docs/html/18_support/howto.html: Add bit about writing to stderr, mostly by Zack. From-SVN: r78709 --- libstdc++-v3/ChangeLog | 7 +++++++ libstdc++-v3/docs/html/18_support/howto.html | 7 +++++++ libstdc++-v3/docs/html/test.html | 11 +++++++++-- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d3e4fc90ea8..55b5add4c42 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2004-03-01 Benjamin Kosnik + + * docs/html/test.html: Add multilib RUNTESTFLAGS example. + + * docs/html/18_support/howto.html: Add bit about writing to + stderr, mostly by Zack. + 2004-03-01 Paolo Carlini * include/bits/locale_facets.tcc (money_get<>::_M_extract, diff --git a/libstdc++-v3/docs/html/18_support/howto.html b/libstdc++-v3/docs/html/18_support/howto.html index 35fd9305022..070d3c33008 100644 --- a/libstdc++-v3/docs/html/18_support/howto.html +++ b/libstdc++-v3/docs/html/18_support/howto.html @@ -284,6 +284,13 @@ to the FAQ.

+

+ This function will attempt to write to stderr. If your application + closes stderr or redirects it to an inappropriate location, + __verbose_terminate_handler will behave in an + unspecified manner. +

+

Dynamic memory management

There are six flavors each of new and diff --git a/libstdc++-v3/docs/html/test.html b/libstdc++-v3/docs/html/test.html index 8c761113eb6..a4ef5ec923a 100644 --- a/libstdc++-v3/docs/html/test.html +++ b/libstdc++-v3/docs/html/test.html @@ -477,11 +477,11 @@ or make check-target-libstdc++-v3 RUNTESTFLAGS="-v -v" + There are two ways to run on a simulator: set up DEJAGNU to point to a specially crafted site.exp, or pass down --target_board flags. Example flags to pass down for various embedded builds are as follows: -

 --target=powerpc-eabism (libgloss/sim)
 make check-target-libstdc++-v3 RUNTESTFLAGS="--target_board=powerpc-sim"
@@ -492,7 +492,14 @@ make check-target-libstdc++-v3 RUNTESTFLAGS="--target_board=calmrisc32-sid"
 --target=xscale-elf (newlib/sim)
 make check-target-libstdc++-v3 RUNTESTFLAGS="--target_board=arm-sim"
 
- + +

Also, here is an example of how to run the libstdc++ testsuite for a +multilibed build directory with different ABI settings: +

+
+make check-target-libstdc++-v3 RUNTESTFLAGS='--target_board \"unix{-mabi=32,,-mabi=64}\"'
+
+

To run a subset of the library tests, simply edit the generated file, testsuite_files , to include only the files that are desired instead of all available test cases. -- 2.30.2