Fix an illegal memory access in the assembler when generating a DWARF5 file/directory...
[deliverable/binutils-gdb.git] / gas / testsuite / gas / elf / elf.exp
index d616d5de7662e9d88e47bf94f7858b5fdd6c9f34..86b304ae34fc106fb1ff962cc7a25558510d2f61 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012-2019 Free Software Foundation, Inc.
+# Copyright (C) 2012-2020 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -55,41 +55,50 @@ proc run_elf_list_test { name suffix opts readelf_opts readelf_pipe } {
 # We're testing bits in obj-elf -- don't run on anything else.
 if { [is_elf_format] } then {
     set target_machine ""
-    if {[istarget "mips*-*-*"]} then {
-       set target_machine -mips
+    set dump_opts ""
+    if {[istarget "arc*-*-*"]} {
+       set target_machine -arc
     }
-    if {[istarget m32r*-*-*]} then {
+    if {[istarget "arm*-*-*"]} {
+       set target_machine -arm
+    }
+    if {[istarget "avr*-*-*"]} {
+       set dump_opts {{as -mno-link-relax}}
+    }
+    if {[istarget "m32r*-*-*"]} then {
        set target_machine -m32r
     }
+    if {[istarget "mips*-*-*"]} then {
+       set target_machine -mips
+    }
     if {[istarget "msp430-*-*"]} then {
        set target_machine -msp430
     }
-    if {[istarget "score-*-*"]} then {
-       set target_machine -score
+    if {[istarget "pru-*-*"]} {
+       set dump_opts {{as -mno-link-relax}}
     }
-    if {[istarget "tic6x-*-*"]} then {
-       set target_machine -tic6x
+    if {[istarget "riscv*-*-*"]} then {
+       set target_machine -riscv
+       set dump_opts {{as -mno-relax}}
     }
-    if {[istarget "xtensa*-*-*"]} then {
-       set target_machine -xtensa
+    if {[istarget "rl78-*-*"]} then {
+       set target_machine -rl78
     }
     if {[istarget "rx-*-*"]} then {
        set target_machine -rx
     }
-    if {[istarget "riscv*-*-*"]} then {
-       set target_machine -riscv
+    if {[istarget "score-*-*"]} then {
+       set target_machine -score
+    }
+    if {[istarget "tic6x-*-*"]} then {
+       set target_machine -tic6x
     }
     if {[istarget "v850*-*-*"]} then {
        set target_machine -v850
     }
-    if {[istarget "rl78-*-*"]} then {
-       set target_machine -rl78
-    }
-    if {[istarget "arm*-*-*"]} {
-       set target_machine -arm
-    }
-    if {[istarget "arc*-*-*"]} {
-       set target_machine -arc
+    if {[istarget "xtensa*-*-*"]} then {
+       set target_machine -xtensa
+       set dump_opts {{as --no-link-relax}}
     }
 
     # The MN10300 and Xtensa ports disable the assembler's call frame
@@ -103,14 +112,15 @@ if { [is_elf_format] } then {
        && ![istarget "am3*-*-*"]} then {
       run_dump_test "ehopt0"
     }
-    case $target_triplet in {
-       { m68k-*-* m68[03]??-*-* } {
+    switch -glob $target_triplet {
+       m68k-*-* -
+       m68[03]??-*-* {
            run_dump_test "file" { { as "--defsym m68k=1" } }
        }
-       { mmix-*-* } {
+       mmix-*-* {
            run_dump_test "file" { { as "--defsym mmix=1" } }
        }
-       { xtensa*-*-* } {
+       xtensa*-*-* {
            run_dump_test "file" { { as "--rename-section file.s=file.c" } }
        }
        default {
@@ -126,37 +136,37 @@ if { [is_elf_format] } then {
     run_dump_test "group1b"
     run_dump_test "group2"
     run_dump_test "group3"
-    case $target_triplet in {
-       { hppa64*-*-hpux* } { }
-       { riscv*-*-* } { }
+    switch -glob $target_triplet {
+       hppa64*-*-hpux* { }
+       riscv*-*-* { }
        default {
            run_dump_test "groupautoa"
        }
     }
-    case $target_triplet in {
-       { hppa64*-*-hpux* } { }
-       { riscv*-*-* } { }
-       { xtensa*-*-* } { }
+    switch -glob $target_triplet {
+       hppa64*-*-hpux* { }
+       riscv*-*-* { }
+       xtensa*-*-* { }
        default {
            run_dump_test "groupautob"
        }
     }
-    case $target_triplet in {
-       { alpha*-*-* } { }
-       { am3*-*-* } { }
-       { *c54x*-*-* } { }
-       { cr16*-*-* } { }
-       { crx*-*-* } { }
-       { h8300-*-* } { }
-       { hppa*-*-* } { }
-       { iq2000*-*-* } { }
-       { mips*-*-* } { }
-       { mn10200-*-* } { }
-       { mn10300-*-* } { }
-       { msp43*-*-* } { }
-       { rl78-*-* } { }
-       { riscv*-*-* } { }
-       { rx-*-* } { }
+    switch -glob $target_triplet {
+       alpha*-*-* { }
+       am3*-*-* { }
+       *c54x*-*-* { }
+       cr16*-*-* { }
+       crx*-*-* { }
+       h8300-*-* { }
+       hppa*-*-* { }
+       iq2000*-*-* { }
+       mips*-*-* { }
+       mn10200-*-* { }
+       mn10300-*-* { }
+       msp43*-*-* { }
+       rl78-*-* { }
+       riscv*-*-* { }
+       rx-*-* { }
        default {
            # The next test can fail if the target does not convert fixups
            # against ordinary symbols into relocations against section symbols.
@@ -170,20 +180,20 @@ if { [is_elf_format] } then {
     run_dump_test "pseudo"
     run_dump_test "section0"
     run_dump_test "section1"
+    # The h8300 port issues a warning message for
+    # new sections created without atrributes.
     if {! [istarget "h8300-*-*"]} then {
-       # The h8300 port issues a warning message for
-       # new sections created without atrributes.
-       case $target_triplet in {
-           { i*86-*-* x86_64-*-* } {
-               run_elf_list_test "section2" "$target_machine" "-al -mx86-used-note=no" "-s" ""
-           }
-           { riscv*-*-* } {
-               run_elf_list_test "section2" "$target_machine" "-al -march-attr" "-s" ""
+       set as_flags "-al --generate-missing-build-notes=no"
+       switch -glob $target_triplet {
+           i*86-*-* -
+           x86_64-*-* {
+               set as_flags "$as_flags -mx86-used-note=no"
            }
-           default {
-               run_elf_list_test "section2" "$target_machine" "-al" "-s" ""
+           riscv*-*-* {
+               set as_flags "$as_flags -march-attr"
            }
        }
+       run_elf_list_test "section2" "$target_machine" "$as_flags" "-s" ""
     }
     run_dump_test "section3"
     run_dump_test "section4"
@@ -192,7 +202,7 @@ if { [is_elf_format] } then {
        # new sections created without atrributes.
        # The RX port does not complain about changing the attributes of the
        # .data and .bss sections since it does not use those names.
-       run_elf_list_test "section5" "" "-al" "-SW" "| grep \" \\\\.test\\\[0-9\\\]\""
+       run_elf_list_test "section5" "" "-al -Z" "-SW" "| grep \" \\\\.test\\\[0-9\\\]\""
     }
     run_dump_test "struct"
     if { ![istarget "alpha*-*-*"] } then {
@@ -201,6 +211,7 @@ if { [is_elf_format] } then {
     }
     run_dump_test "symver"
     run_dump_test "pr21661"
+    run_dump_test "pr14891"
 
     # No indirect functions on non-GNU targets.
     # The Visium and MSP set the ELF header's OSABI field to ELFOSABI_STANDALONE.
@@ -209,8 +220,9 @@ if { [is_elf_format] } then {
     # in the symbol type test.
     # We also need to exclude targets that do not support unique objects.
     if {    [istarget "*-*-hpux*"]
-        || [istarget "arm*-*-*"]
-        || [istarget "msp*-*-*"]
+        || [istarget "arm*-*-*"]       
+         || [istarget "mips*-*-*"]
+         || [istarget "msp*-*-*"]
         || [istarget "visium-*-*"]
         || ![supports_gnu_unique]
      } then {
@@ -221,6 +233,7 @@ if { [is_elf_format] } then {
     } else {
        run_dump_test ifunc-1
        run_elf_list_test "type" "" "" "-s" "| grep \"1 *\\\[FIONTCU\\\]\""
+       run_elf_list_test "type-2" "" "--warn" "-s" "| grep \"0 *\\\[FIONT\\\]\""
     }
 
     run_dump_test "section6"
@@ -233,24 +246,35 @@ if { [is_elf_format] } then {
     run_dump_test "section12b"
     run_dump_test "section13"
     run_dump_test "section14"
-    run_dump_test "dwarf2-1"
-    run_dump_test "dwarf2-2"
-    run_dump_test "dwarf2-3"
-    run_dump_test "dwarf2-4"
-    run_dump_test "dwarf2-5"
-    run_dump_test "dwarf2-6"
-    run_dump_test "dwarf2-7"
-    run_dump_test "dwarf2-8"
-    run_dump_test "dwarf2-9"
-    run_dump_test "dwarf2-10"
-    run_dump_test "dwarf2-11"
-    run_dump_test "dwarf2-12"
-    run_dump_test "dwarf2-13"
-    run_dump_test "dwarf2-14"
-    run_dump_test "dwarf2-15"
-    run_dump_test "dwarf2-16"
-    run_dump_test "dwarf2-17"
-    run_dump_test "dwarf2-18"
+    run_dump_test "section15"
+    run_dump_test "section16a"
+    run_dump_test "section16b"
+    run_dump_test "section17"
+    run_dump_test "section18"
+    run_dump_test "section19"
+    run_dump_test "section20"
+    run_dump_test "section21"
+    run_dump_test "dwarf2-1" $dump_opts
+    run_dump_test "dwarf2-2" $dump_opts
+    run_dump_test "dwarf2-3" $dump_opts
+    run_dump_test "dwarf2-4" $dump_opts
+    run_dump_test "dwarf2-5" $dump_opts
+    run_dump_test "dwarf2-6" $dump_opts
+    run_dump_test "dwarf2-7" $dump_opts
+    run_dump_test "dwarf2-8" $dump_opts
+    run_dump_test "dwarf2-9" $dump_opts
+    run_dump_test "dwarf2-10" $dump_opts
+    run_dump_test "dwarf2-11" $dump_opts
+    run_dump_test "dwarf2-12" $dump_opts
+    run_dump_test "dwarf2-13" $dump_opts
+    run_dump_test "dwarf2-14" $dump_opts
+    run_dump_test "dwarf2-15" $dump_opts
+    run_dump_test "dwarf2-16" $dump_opts
+    run_dump_test "dwarf2-17" $dump_opts
+    run_dump_test "dwarf2-18" $dump_opts
+    run_dump_test "dwarf2-19" $dump_opts
+    run_dump_test "dwarf-5-file0" $dump_opts
+    run_dump_test "pr25917"
     run_dump_test "bss"
     run_dump_test "bad-bss"
     run_dump_test "bad-section-flag"
This page took 0.028143 seconds and 4 git commands to generate.