01917d
commit e03ed3c64a048522ba4bc12092f8a75bcfab6ea8
01917d
Author: Andreas Arnez <arnez@linux.vnet.ibm.com>
01917d
Date:   Fri Jul 10 10:36:02 2015 +0200
01917d
01917d
    gnu_vector.exp: Skip infcall tests on x86/x86_64
01917d
    
01917d
    Since the new KFAILs/KPASSs for the infcall tests on x86 and x86_64
01917d
    targets generated unnecessary noise, this change skips them with
01917d
    UNSUPPORTED instead.
01917d
    
01917d
    gdb/testsuite/ChangeLog:
01917d
    
01917d
    	* gdb.base/gnu_vector.exp: On x86 and x86_64 targets, skip the
01917d
    	infcall tests instead of setting up for KFAIL.
01917d
01917d
### a/gdb/testsuite/ChangeLog
01917d
### b/gdb/testsuite/ChangeLog
01917d
## -1,3 +1,8 @@
01917d
+2015-07-10  Andreas Arnez  <arnez@linux.vnet.ibm.com>
01917d
+
01917d
+	* gdb.base/gnu_vector.exp: On x86 and x86_64 targets, skip the
01917d
+	infcall tests instead of setting up for KFAIL.
01917d
+
01917d
 2015-07-10  Markus Metzger  <markus.t.metzger@intel.com>
01917d
 
01917d
 	* gdb.btrace/record_goto-step.exp: New.
01917d
--- a/gdb/testsuite/gdb.base/gnu_vector.exp
01917d
+++ b/gdb/testsuite/gdb.base/gnu_vector.exp
01917d
@@ -177,16 +177,19 @@ gdb_test "ptype struct_with_vector_1" "type = struct {\r\n\[\t \]+int i;\r\n\[\t
01917d
 
01917d
 # Test inferior function calls with vector arguments and/or vector
01917d
 # return values.
01917d
-setup_kfail gdb/18537 "i?86-*-*" "x86_64-*-*"
01917d
+if { [istarget "i?86-*-*"] || [istarget "x86_64-*-*" ] } {
01917d
+    # These platforms don't support infcalls with vector arguments
01917d
+    # and/or vector return values, so skip the remaining tests.
01917d
+    # See also PR exp/18537.
01917d
+    unsupported "skip remaining vector ABI tests on this arch"
01917d
+    return
01917d
+}
01917d
 gdb_test "print add_some_intvecs(i4a, i4b, 3 * i4a)" "= \\{17, 34, 72, 132\\}" \
01917d
     "call add_some_intvecs"
01917d
-setup_kfail gdb/18537 "i?86-*-*" "x86_64-*-*"
01917d
 gdb_test "print add_many_charvecs(c4, c4, c4, c4, c4, c4, c4, c4, c4, c4)" \
01917d
     "= \\{10, 20, 30, 40\\}" "call add_many_charvecs"
01917d
-setup_kfail gdb/18537 "i?86-*-*" "x86_64-*-*"
01917d
 gdb_test "print add_various_floatvecs(2, f4a, f4b)" "= \\{3, 6, 16, 20\\}" \
01917d
     "call add_various_floatvecs"
01917d
-setup_kfail gdb/18537 "i?86-*-*" "x86_64-*-*"
01917d
 gdb_test "print add_structvecs(i2, (struct just_int2)\{2*i2\}, (struct two_int2)\{3*i2, 4*i2\})" \
01917d
     "= \\{i = \\{10, 20\\}\\}" "call add_structvecs"
01917d
 gdb_test "print add_singlevecs((char1) \{6\}, (int1) \{12\}, (double1) \{24\})" "= \\{42\\}" \
01917d
@@ -195,7 +198,6 @@ gdb_test "print add_singlevecs((char1) \{6\}, (int1) \{12\}, (double1) \{24\})"
01917d
 # Test vector return value handling with "finish" and "return".
01917d
 gdb_breakpoint "add_some_intvecs"
01917d
 gdb_continue "add_some_intvecs"
01917d
-setup_kfail gdb/18537 "i?86-*-*" "x86_64-*-*"
01917d
 gdb_test "finish" "Value returned is .* = \\{10, 20, 48, 72\\}" \
01917d
     "finish shows vector return value"
01917d
 gdb_continue "add_some_intvecs"
01917d
@@ -203,5 +205,4 @@ gdb_test "return (int4) \{4, 2, 7, 6\}" \
01917d
     "#0 .* main .*" \
01917d
     "set vector return value" \
01917d
     "Make add_some_intvecs return now. .y or n.*" "y"
01917d
-setup_kfail gdb/18537 "i?86-*-*" "x86_64-*-*"
01917d
 gdb_test "continue" "4 2 7 6\r\n.*" "verify vector return value"