Blame SOURCES/gdb-rhbz1182151-ibm-z13-19of22.patch

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