]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* lib/target-supports-dg.exp (check-flags): New.
authorjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 10 May 2006 22:13:39 +0000 (22:13 +0000)
committerjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 10 May 2006 22:13:39 +0000 (22:13 +0000)
(dg-skip-if): Move flag checks.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113686 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/lib/target-supports-dg.exp

index e21851c6613892b404eef620bb02ea99bdb40425..35fbf2dd7a3bdaa96b192e9ffacc7fc8a5745963 100644 (file)
@@ -1,3 +1,8 @@
+2006-05-10  Janis Johnson  <janis187@us.ibm.com>
+
+       * lib/target-supports-dg.exp (check-flags): New.
+       (dg-skip-if): Move flag checks.
+
 2006-05-09  Steve Ellcey  <sje@cup.hp.com>
 
        * lib/target-supports-dg.exp (dg-require-cxa-atexit): New.
index b361b7fe3dc7e6d3b025cfb35bf91940aea74cd2..128ed8fd93b53c52621a7813e89bbcaa3451d3ba 100644 (file)
@@ -179,6 +179,40 @@ proc check_test_flags { args } {
     return $answer
 }
 
+# Compare flags for a test directive against flags that will be used to
+# compile the test: multilib flags, flags for torture options, and either
+# the default flags for this group of tests or flags specified with a
+# previous dg-options directive.
+
+proc check-flags { args } {
+    global compiler_flags
+    # These variables are from DejaGnu's dg-test.
+    upvar dg-extra-tool-flags extra_tool_flags
+    upvar tool_flags tool_flags
+
+    # The args are within another list; pull them out.
+    set args [lindex $args 0]
+
+    # Start the list with a dummy tool name so the list will match "*"
+    # if there are no flags.
+    set compiler_flags " toolname "
+    append compiler_flags $extra_tool_flags
+    append compiler_flags $tool_flags
+    set dest [target_info name]
+    if [board_info $dest exists multilib_flags] {
+       append compiler_flags "[board_info $dest multilib_flags] "
+    }
+
+    # The target list might be an effective-target keyword, so replace
+    # the original list with "*-*-*", since we already know it matches.
+    set result [check_conditional_xfail [lreplace $args 1 1 "*-*-*"]]
+
+    # Any value in this variable was left over from an earlier test.
+    set compiler_flags ""
+
+    return $result
+}
+
 # Skip the test (report it as UNSUPPORTED) if the target list and
 # included flags are matched and the excluded flags are not matched.
 #
@@ -190,35 +224,24 @@ proc check_test_flags { args } {
 # group of tests or flags specified with a previous dg-options command.
 
 proc dg-skip-if { args } {
+    # Don't bother if we're already skipping the test.
+    upvar dg-do-what dg-do-what
+    if { [lindex ${dg-do-what} 1] == "N" } {
+      return
+    }
+
     set args [lreplace $args 0 0]
 
     set selector [list target [lindex $args 1]]
     if { [dg-process-target $selector] == "S" } {
-       # The target list matched; now check the flags.  The DejaGnu proc
-       # check_conditional_xfail will look at the options in compiler_flags,
-       # so set that up for this test based on flags we know about.  Start
-       # the list with a dummy tool name so the list will match "*" if
-       # there are no flags.
-
-       global compiler_flags
-       upvar dg-extra-tool-flags extra_tool_flags
-
-       set compiler_flags " toolname "
-       append compiler_flags $extra_tool_flags
-       set dest [target_info name]
-       if [board_info $dest exists multilib_flags] {
-           append compiler_flags "[board_info $dest multilib_flags] "
-       }
+       # These are defined in DejaGnu's dg-test, needed by check-flags.
+       upvar dg-extra-tool-flags dg-extra-tool-flags
+       upvar tool_flags tool_flags
 
-       # The target list might be an effective-target keyword, so replace
-       # the original list with "*-*-*".
-       if [check_conditional_xfail [lreplace $args 1 1 "*-*-*"]] {
+       if [check-flags $args] {
            upvar dg-do-what dg-do-what
             set dg-do-what [list [lindex ${dg-do-what} 0] "N" "P"]
        }
-
-       # Any value in this variable was left over from an earlier test.
-       set compiler_flags ""
     }
 }