diff options
author | Janis Johnson <janis187@us.ibm.com> | 2008-11-26 22:15:07 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2008-11-26 22:15:07 +0000 |
commit | 32ab0ba481df6e3c03e6a97376c1babac65deb5e (patch) | |
tree | 626a34a3e4189799ed3fb9e00c58cc1621616cb9 /gcc | |
parent | 6411cd386c53ee1de40b535830e4995a3d442d77 (diff) | |
download | gcc-32ab0ba481df6e3c03e6a97376c1babac65deb5e.zip gcc-32ab0ba481df6e3c03e6a97376c1babac65deb5e.tar.gz gcc-32ab0ba481df6e3c03e6a97376c1babac65deb5e.tar.bz2 |
re PR testsuite/28870 (configuring, over-riding timeout values in testsuite)
PR testsuite/28870
* lib/objc.exp (objc_target_compile): Fix typo from previous change.
* lib/gnat.exp (gnat_target_compile): Fix typo from previous change.
From-SVN: r142230
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/testsuite/lib/gnat.exp | 2 | ||||
-rw-r--r-- | gcc/testsuite/lib/objc.exp | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 89264b2..c8e42fc 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,8 @@ 2008-11-26 Janis Johnson <janis187@us.ibm.com> + * lib/objc.exp (objc_target_compile): Fix typo from previous change. + * lib/gnat.exp (gnat_target_compile): Fix typo from previous change. + PR testsuite/28870 * lib/timeout.exp: New. * lib/timeout-dg.exp: New. diff --git a/gcc/testsuite/lib/gnat.exp b/gcc/testsuite/lib/gnat.exp index af120b0..f73ec81 100644 --- a/gcc/testsuite/lib/gnat.exp +++ b/gcc/testsuite/lib/gnat.exp @@ -132,7 +132,7 @@ proc gnat_target_compile { source dest type options } { set ld_library_path ".:${gnat_libgcc_s_path}" lappend options "compiler=$GNAT_UNDER_TEST -q -f" lappend options "incdir=${rootme}/ada/rts" - lappend options "timeout=[timeout_value] + lappend options "timeout=[timeout_value]" if { [target_info needs_status_wrapper]!="" && [info exists gluefile] } { lappend options "libs=${gluefile}" diff --git a/gcc/testsuite/lib/objc.exp b/gcc/testsuite/lib/objc.exp index a9c2853..1705979 100644 --- a/gcc/testsuite/lib/objc.exp +++ b/gcc/testsuite/lib/objc.exp @@ -194,7 +194,7 @@ proc objc_target_compile { source dest type options } { set source [concat "-x objective-c-header" $source] } lappend options "compiler=$OBJC_UNDER_TEST" - lappend options "timeout=[timeout_value] + lappend options "timeout=[timeout_value]" set_ld_library_path_env_vars |