gdb/testsuite: Remove duplicates from gdb.base/set-cfd.exp

When running the testsuite, I have:

    Running .../gdb/testsuite/gdb.base/set-cwd.exp ...
    DUPLICATE: gdb.base/set-cwd.exp: test_cwd_reset: continue to breakpoint: break-here

Fix by moving the tests after the 'runto_main' within the same
with_test_prefix scope.

While at it, I fix some indentation issues.

Tested on x86_64-linux.
This commit is contained in:
Lancelot SIX 2021-11-21 00:55:01 +00:00
parent 1868c0cb33
commit d95edb60be

View file

@ -177,13 +177,13 @@ proc_with_prefix test_cwd_reset { } {
if { ![runto_main] } { if { ![runto_main] } {
return -1 return -1
} }
}
gdb_breakpoint [gdb_get_line_number "break-here"] gdb_breakpoint [gdb_get_line_number "break-here"]
gdb_continue_to_breakpoint "break-here" ".* break-here .*" gdb_continue_to_breakpoint "break-here" ".* break-here .*"
gdb_test "print dir" "\\\$$decimal = \"$gdb_cwd\", .*" \ gdb_test "print dir" "\\\$$decimal = \"$gdb_cwd\", .*" \
"inferior cwd got reset correctly" "inferior cwd got reset correctly"
}
} }
test_cd_into_dir test_cd_into_dir