aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2009-04-13 19:42:26 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2009-04-13 12:42:26 -0700
commit1b1c508f21760e3d2c52c80c6195d2509cfc7daf (patch)
treeccbe29d149a31a56041c6920a7a5830a03d5a852 /gcc/testsuite
parentc1b93f2b526a6beca6a15968fc6938fdfe5b50bc (diff)
downloadgcc-1b1c508f21760e3d2c52c80c6195d2509cfc7daf.zip
gcc-1b1c508f21760e3d2c52c80c6195d2509cfc7daf.tar.gz
gcc-1b1c508f21760e3d2c52c80c6195d2509cfc7daf.tar.bz2
re PR testsuite/39733 (gcc.misc-tests/help.exp doesn't work with multilib)
2009-04-13 H.J. Lu <hongjiu.lu@intel.com> PR testsuite/39733 * gcc.misc-tests/options.exp (check_for_options): Renamed to ... (check_for_all_options): This. From-SVN: r146009
Diffstat (limited to 'gcc/testsuite')
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gcc.misc-tests/options.exp4
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index c920a6f..d29496f 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2009-04-13 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR testsuite/39733
+ * gcc.misc-tests/options.exp (check_for_options): Renamed to ...
+ (check_for_all_options): This.
+
2009-04-13 Jason Merrill <jason@redhat.com>
PR c++/39750
diff --git a/gcc/testsuite/gcc.misc-tests/options.exp b/gcc/testsuite/gcc.misc-tests/options.exp
index 1d4b779..a9a74e1 100644
--- a/gcc/testsuite/gcc.misc-tests/options.exp
+++ b/gcc/testsuite/gcc.misc-tests/options.exp
@@ -19,7 +19,7 @@
# match the patterns COMPILER_PATTERN, AS_PATTERN and LD_PATTERN,
# respectively.
-proc check_for_options {language gcc_options compiler_pattern as_pattern ld_pattern} {
+proc check_for_all_options {language gcc_options compiler_pattern as_pattern ld_pattern} {
set filename test-[pid]
set fd [open $filename.c w]
puts $fd "int main (void) \{ return 0; \}"
@@ -51,4 +51,4 @@ proc check_for_options {language gcc_options compiler_pattern as_pattern ld_patt
pass $test
}
-check_for_options c {--coverage} {-fprofile-arcs -ftest-coverage} {} {-lgcov}
+check_for_all_options c {--coverage} {-fprofile-arcs -ftest-coverage} {} {-lgcov}