aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2011-07-15 17:29:57 -0400
committerJason Merrill <jason@gcc.gnu.org>2011-07-15 17:29:57 -0400
commit6feeed065cba3185d087aa70a5a7493a4a7bbc3b (patch)
tree807b02754172ebb603c80eaace60c1e49b750d16 /gcc/cp
parent4476205585284726e033e2759f29652c4798d160 (diff)
downloadgcc-6feeed065cba3185d087aa70a5a7493a4a7bbc3b.zip
gcc-6feeed065cba3185d087aa70a5a7493a4a7bbc3b.tar.gz
gcc-6feeed065cba3185d087aa70a5a7493a4a7bbc3b.tar.bz2
re PR testsuite/49741 (make -k check-c++0x not multilib aware)
PR testsuite/49741 gcc/ * Makefile.in ($(lang_checks_parallelized)): Allow --extra_opts rather than --tool_opts. gcc/cp/ * Make-lang.in (check-c++0x): Use --extra_opts instead of--tool_opts. gcc/testsuite/ * lib/g++.exp (${tool}_option_help, ${tool}_option_proc): Restore. Use --extra_opts instead of --additional_options. * Makefile.in (check-c++): Move check-gcc-c++0x after check-target-libstdc++-v3. From-SVN: r176332
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/ChangeLog5
-rw-r--r--gcc/cp/Make-lang.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 8e45b2e..a0ce80d 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-15 Jason Merrill <jason@redhat.com>
+
+ PR testsuite/49741
+ * Make-lang.in (check-c++0x): Use --extra_opts instead of--tool_opts.
+
2011-07-13 Jason Merrill <jason@redhat.com>
* Make-lang.in (check-c++0x): New.
diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in
index b9251a4..ad466b2 100644
--- a/gcc/cp/Make-lang.in
+++ b/gcc/cp/Make-lang.in
@@ -151,7 +151,7 @@ c++.srcman: doc/g++.1
check-c++ : check-g++
# Run the testsute in C++0x mode.
check-c++0x:
- $(MAKE) RUNTESTFLAGS="$(RUNTESTFLAGS) --tool_opts=-std=gnu++0x" \
+ $(MAKE) RUNTESTFLAGS="$(RUNTESTFLAGS) --extra_opts,-std=gnu++0x" \
TESTSUITEDIR="$(TESTSUITEDIR).c++0x" check-g++
check-c++-subtargets : check-g++-subtargets
# List of targets that can use the generic check- rule and its // variant.