mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
[gdb/testsuite] Silence warnings about obsolete -gstabs
When running test-case gdb.base/gdbindex-stabs.exp on openSUSE Tumbleweed (with gcc 12) I get: ... gdb compile failed, gdb/testsuite/gdb.base/gdbindex-stabs.c: warning: \ STABS debugging information is obsolete and not supported anymore ... Silence the warning by passing quiet to gdb_compile. Likewise in two other test-cases.
This commit is contained in:
parent
3c74d321be
commit
632ecf33a1
@ -21,7 +21,7 @@ set srcfile_dwarf ${testfile}-dwarf.c
|
||||
set objfile_stabs [standard_output_file ${testfile}.o]
|
||||
set objfile_dwarf [standard_output_file ${testfile}-dwarf.o]
|
||||
|
||||
if {[gdb_compile "${srcdir}/${subdir}/${srcfile_stabs}" ${objfile_stabs} object {additional_flags=-gstabs}] != ""
|
||||
if {[gdb_compile "${srcdir}/${subdir}/${srcfile_stabs}" ${objfile_stabs} object {additional_flags=-gstabs quiet}] != ""
|
||||
|| [gdb_compile "${srcdir}/${subdir}/${srcfile_dwarf}" ${objfile_dwarf} object {additional_flags=-gdwarf-2}] != ""
|
||||
|| [gdb_compile "${objfile_stabs} ${objfile_dwarf}" ${binfile} executable {nodebug}] != ""} {
|
||||
untested "failed to compile"
|
||||
|
@ -51,7 +51,7 @@ if {[gdb_compile "${srcdir}/${subdir}/${srcfile2}" "${asmfile2}" assembly {}] !=
|
||||
# STABS compilation is intentional as it tests the STABS lookup where is no
|
||||
# partial_symtab->psymtabs_addrmap supported for that CU (Compilation Unit) in
|
||||
# a file containing psymtabs_addrmap-supporting DWARF CUs.
|
||||
if {[gdb_compile "${srcdir}/${subdir}/${srcfile3}" "${objfile3}" object {additional_flags=-gstabs}] != "" } {
|
||||
if {[gdb_compile "${srcdir}/${subdir}/${srcfile3}" "${objfile3}" object {additional_flags=-gstabs quiet}] != "" } {
|
||||
return -1
|
||||
}
|
||||
|
||||
|
@ -39,7 +39,7 @@ proc do_test {version} {
|
||||
gdb_test "print sizeof (*e)" "= \[1-9\]*" "sizeof (*e) in test $version"
|
||||
}
|
||||
|
||||
if { [prepare_for_testing "failed to prepare" $testfile $testfile.c {debug additional_flags=-gstabs}] == 0 } {
|
||||
if { [prepare_for_testing "failed to prepare" $testfile $testfile.c {debug additional_flags=-gstabs quiet}] == 0 } {
|
||||
do_test forced_stabs
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user