From: mrs Date: Wed, 3 Feb 2016 22:23:57 +0000 (+0000) Subject: * lib/compat.exp (compat-get-options-main): Add dg-timeout-factor X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf8f3ba03ecdcbacfdbfde2792a764cdabb7757c;p=thirdparty%2Fgcc.git * lib/compat.exp (compat-get-options-main): Add dg-timeout-factor support for struct-layout-1.exp. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@233112 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1a17a9de3376..e6b0cc6fc495 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-02-03 Mike Stump + + * lib/compat.exp (compat-get-options-main): Add dg-timeout-factor + support for struct-layout-1.exp. + 2016-02-03 Patrick Palka PR c++/69056 diff --git a/gcc/testsuite/lib/compat.exp b/gcc/testsuite/lib/compat.exp index 77d6705c73bc..63d78cc9dfe7 100644 --- a/gcc/testsuite/lib/compat.exp +++ b/gcc/testsuite/lib/compat.exp @@ -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"