Skip to content
Snippets Groups Projects
Commit 23daba76 authored by law's avatar law
Browse files

* lib/gcc.exp (proc gcc_target_compile): Add support for timeout

       specified by target.
Also add missing ChangeLog entries for changes that we installed long ago...


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26240 138bc75d-0d04-0410-961f-82ee72b054a4
parent b07c329d
No related branches found
No related tags found
No related merge requests found
...@@ -119,6 +119,9 @@ Fri Feb 12 11:04:35 1999 Jeffrey A Law (law@cygnus.com) ...@@ -119,6 +119,9 @@ Fri Feb 12 11:04:35 1999 Jeffrey A Law (law@cygnus.com)
1999-02-11 Nick Clifton <nickc@cygnus.com> 1999-02-11 Nick Clifton <nickc@cygnus.com>
* lib/gcc.exp (proc gcc_target_compile): Add support for timeout
specified by target.
* lib/chill.exp: Fix typo: doesn'timeout -> doesn't * lib/chill.exp: Fix typo: doesn'timeout -> doesn't
Thu Feb 11 01:12:12 1999 Jeffrey A Law (law@cygnus.com) Thu Feb 11 01:12:12 1999 Jeffrey A Law (law@cygnus.com)
...@@ -183,6 +186,14 @@ Sat Jan 30 11:10:06 1999 Jeffrey A Law (law@cygnus.com) ...@@ -183,6 +186,14 @@ Sat Jan 30 11:10:06 1999 Jeffrey A Law (law@cygnus.com)
* gcc.dg/990130-1.c: New test. * gcc.dg/990130-1.c: New test.
1999-01-27 Felix Lee <flee@cygnus.com>
* lib/c-torture.exp (c-torture-compile): pull out code for
analyzing gcc error messages.
(c-torture-execute): ditto, and fix some (harmless) false
positives.
* lib/gcc.exp (gcc_check_compile): new function.
Sun Jan 17 00:02:33 1999 Jeffrey A Law (law@cygnus.com) Sun Jan 17 00:02:33 1999 Jeffrey A Law (law@cygnus.com)
* gcc.dg/990117-1.c: New test. * gcc.dg/990117-1.c: New test.
...@@ -628,6 +639,12 @@ Thu Aug 27 23:59:18 1998 Jeffrey A Law (law@cygnus.com) ...@@ -628,6 +639,12 @@ Thu Aug 27 23:59:18 1998 Jeffrey A Law (law@cygnus.com)
* gcc.dg/980827-1.c: New test. * gcc.dg/980827-1.c: New test.
Wed Aug 26 16:25:38 1998 Nick Clifton <nickc@cygnus.com>
* lib/c-torture.exp: Add support for
torture_eval_before_compile and torture_eval_before_execute
variables.
Tue Aug 25 19:42:13 1998 Jeffrey A Law (law@cygnus.com) Tue Aug 25 19:42:13 1998 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/980825-1.c: New test. * gcc.c-torture/compile/980825-1.c: New test.
......
...@@ -144,6 +144,9 @@ proc gcc_target_compile { source dest type options } { ...@@ -144,6 +144,9 @@ proc gcc_target_compile { source dest type options } {
if [target_info exists gcc,no_varargs] { if [target_info exists gcc,no_varargs] {
lappend options "additional_flags=-DNO_VARARGS" lappend options "additional_flags=-DNO_VARARGS"
} }
if [target_info exists gcc,timeout] {
lappend options "timeout=[target_info gcc,timeout]"
}
lappend options "compiler=$GCC_UNDER_TEST" lappend options "compiler=$GCC_UNDER_TEST"
return [target_compile $source $dest $type $options] return [target_compile $source $dest $type $options]
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment