gcc-dg.exp (gcc-dg-debug-runtest): Add opt_opts parameter.

* lib/gcc-dg.exp (gcc-dg-debug-runtest): Add opt_opts parameter.
	* gcc.dg/debug/debug.exp: Pass opt_opts parameter to
	gcc-dg-debug-runtest.
	* g++.dg/debug/debug.exp: Pass opt_opts parameter to
	gcc-dg-debug-runtest.

From-SVN: r66937
This commit is contained in:
Mark Mitchell 2003-05-18 18:59:56 +00:00 committed by Mark Mitchell
parent 567bfee816
commit 563025ca97
4 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2003-05-18 Mark Mitchell <mark@codesourcery.com>
* lib/gcc-dg.exp (gcc-dg-debug-runtest): Add opt_opts parameter.
* gcc.dg/debug/debug.exp: Pass opt_opts parameter to
gcc-dg-debug-runtest.
* g++.dg/debug/debug.exp: Pass opt_opts parameter to
gcc-dg-debug-runtest.
2003-05-18 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
PR c++/9022

View File

@ -23,7 +23,7 @@ load_lib g++-dg.exp
dg-init
# Main loop.
gcc-dg-debug-runtest g++_target_compile trivial.C \
gcc-dg-debug-runtest g++_target_compile trivial.C [list -O2 -O3] \
[lsort [glob -nocomplain $srcdir/$subdir/*.C]]
# All done.

View File

@ -24,7 +24,7 @@ dg-init
# Main loop.
gcc-dg-debug-runtest gcc_target_compile trivial.c \
gcc-dg-debug-runtest gcc_target_compile trivial.c [list -O -O3] \
[lsort [glob -nocomplain $srcdir/$subdir/*.\[cS\]]]
# All done.

View File

@ -190,7 +190,7 @@ proc gcc-dg-runtest { testcases default-extra-flags } {
}
}
proc gcc-dg-debug-runtest { target_compile trivial testcases } {
proc gcc-dg-debug-runtest { target_compile trivial opt_opts testcases } {
global srcdir subdir
if ![info exists DEBUG_TORTURE_OPTIONS] {
@ -203,7 +203,7 @@ proc gcc-dg-debug-runtest { target_compile trivial testcases } {
$comp_output] } {
foreach level {1 "" 3} {
lappend DEBUG_TORTURE_OPTIONS [list "${type}${level}"]
foreach opt { -O2 -O3 } {
foreach opt $opt_opts {
lappend DEBUG_TORTURE_OPTIONS \
[list "${type}${level}" "$opt" ]
}