[PATCH 1/6] ix86: enable more ELF tests for VxWorks

Jan Beulich jbeulich@suse.com
Fri Jul 17 13:51:06 GMT 2020


The tree-wide is_elf_format predicate excludes VxWorks, but the majority
of ELF specific tests is quite fine for this target.

gas/
2020-07-XX  Jan Beulich  <jbeulich@suse.com>

	* testsuite/gas/i386/i386.exp: Include *-*-vxworks alongside
	is_elf_format as applicable; merely exclude iamcu ones.

--- a/gas/testsuite/gas/i386/i386.exp
+++ b/gas/testsuite/gas/i386/i386.exp
@@ -550,7 +550,10 @@ if [expr ([istarget "i*86-*-*"] ||  [ist
 
     # These tests require support for 8 and 16 bit relocs,
     # so we only run them for ELF and COFF targets.
-    if {[is_elf_format] || [istarget "*-*-coff*"]} then {
+    if {[is_elf_format]
+	|| [istarget "*-*-vxworks*"]
+	|| [istarget "*-*-coff*"]
+    } then {
 	run_dump_test "reloc"
 	run_dump_test "jump16"
 	run_list_test "white" "-al --listing-lhs-width=3"
@@ -566,7 +569,7 @@ if [expr ([istarget "i*86-*-*"] ||  [ist
     }
 
     # ELF specific tests
-    if [is_elf_format] then {
+    if {[is_elf_format] || [istarget "*-*-vxworks*"]} then {
 	# PIC is only supported on ELF targets.
 	run_dump_test "intelpic"
 
@@ -641,12 +644,14 @@ if [expr ([istarget "i*86-*-*"] ||  [ist
 	    run_list_test "code64-inval" "-I${srcdir}/$subdir -al"
 	}
 
-	run_dump_test "iamcu-1"
-	run_dump_test "iamcu-2"
-	run_dump_test "iamcu-3"
-	run_dump_test "iamcu-4"
-	run_dump_test "iamcu-5"
-	run_list_test "iamcu-inval-1" "-march=iamcu -al"
+	if {![istarget "*-*-vxworks*"]} then {
+	    run_dump_test "iamcu-1"
+	    run_dump_test "iamcu-2"
+	    run_dump_test "iamcu-3"
+	    run_dump_test "iamcu-4"
+	    run_dump_test "iamcu-5"
+	    run_list_test "iamcu-inval-1" "-march=iamcu -al"
+	}
     }
 
     # This is a PE specific test.
@@ -676,7 +681,7 @@ if [expr [istarget "i*86-*-*"] || [istar
     run_dump_test pr19498
     run_list_test "nop-bad-1" ""
     run_list_test "unspec" ""
-    if [is_elf_format] then {
+    if {[is_elf_format] || [istarget "*-*-vxworks*"]} then {
 	run_list_test_stdin "list-1" "-al"
 	run_list_test_stdin "list-2" "-al"
 	run_list_test_stdin "list-3" "-al"



More information about the Binutils mailing list