Commit b12d4923 by Mike Stump Committed by Mike Stump

compat.exp (compat-get-options-main): Add dg-timeout-factor support for struct-layout-1.exp.

	* lib/compat.exp (compat-get-options-main): Add dg-timeout-factor
	support for struct-layout-1.exp.

From-SVN: r233112
parent 68750bce
2016-02-03 Mike Stump <mikestump@comcast.net>
* lib/compat.exp (compat-get-options-main): Add dg-timeout-factor
support for struct-layout-1.exp.
2016-02-03 Patrick Palka <ppalka@gcc.gnu.org>
PR c++/69056
......
......@@ -170,7 +170,8 @@ proc compat-get-options-main { src } {
if { ![string compare "dg-options" $cmd] \
|| [string match "dg-prune-output" $cmd] \
|| [string match "dg-skip-if" $cmd] \
|| [string match "dg-require-*" $cmd] } {
|| [string match "dg-require-*" $cmd] \
|| [string match "dg-timeout-factor" $cmd] } {
set status [catch "$op" errmsg]
if { $status != 0 } {
perror "src: $errmsg for \"$op\"\n"
......@@ -215,7 +216,8 @@ proc compat-get-options { src } {
set cmd [lindex $op 0]
if { ![string compare "dg-options" $cmd] \
|| ![string compare "dg-prune-output" $cmd] \
|| ![string compare "dg-xfail-if" $cmd] } {
|| ![string compare "dg-xfail-if" $cmd] \
|| ![string compare "dg-timeout-factor" $cmd] } {
set status [catch "$op" errmsg]
if { $status != 0 } {
perror "src: $errmsg for \"$op\"\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment