diff options
author | Tom Tromey <tromey@redhat.com> | 2013-08-23 14:16:58 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-11-04 11:02:09 -0700 |
commit | c59ffcabfe8b416384b9ec8288b77ae44643be4d (patch) | |
tree | 718af290ece2b1c37aaace386139e83b477dc5d5 | |
parent | 479c8d686e8b76802c2548708f939e014ebbe13c (diff) | |
download | gdb-c59ffcabfe8b416384b9ec8288b77ae44643be4d.zip gdb-c59ffcabfe8b416384b9ec8288b77ae44643be4d.tar.gz gdb-c59ffcabfe8b416384b9ec8288b77ae44643be4d.tar.bz2 |
make gdb.asm parallel-safe
This fixes gdb.asm to be parallel-safe.
2013-11-04 Tom Tromey <tromey@redhat.com>
* gdb.asm/asm-source.exp: Use standard_output_file.
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.asm/asm-source.exp | 15 |
2 files changed, 13 insertions, 6 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index d21d7c2..d058ed0 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2013-11-04 Tom Tromey <tromey@redhat.com> + * gdb.asm/asm-source.exp: Use standard_output_file. + +2013-11-04 Tom Tromey <tromey@redhat.com> + * gdb.server/file-transfer.exp: Use standard_output_file. 2013-11-04 Tom Tromey <tromey@redhat.com> diff --git a/gdb/testsuite/gdb.asm/asm-source.exp b/gdb/testsuite/gdb.asm/asm-source.exp index 5168452..511bd21 100644 --- a/gdb/testsuite/gdb.asm/asm-source.exp +++ b/gdb/testsuite/gdb.asm/asm-source.exp @@ -200,10 +200,13 @@ if [board_info $dest exists multilib_flags] { standard_testfile asmsrc1.s asmsrc2.s -remote_exec build "rm -f ${subdir}/arch.inc" -remote_download host ${srcdir}/${subdir}/${asm-arch}.inc ${subdir}/arch.inc -remote_exec build "rm -f ${subdir}/note.inc" -remote_download host ${srcdir}/${subdir}/${asm-note}.inc ${subdir}/note.inc +set arch_inc [standard_output_file arch.inc] +set note_inc [standard_output_file note.inc] + +remote_exec build "rm -f $arch_inc" +remote_download host ${srcdir}/${subdir}/${asm-arch}.inc $arch_inc +remote_exec build "rm -f $note_inc" +remote_download host ${srcdir}/${subdir}/${asm-note}.inc $note_inc if { [string equal ${asm-flags} ""] } { set asm-flags "-I${srcdir}/${subdir} $obj_include" @@ -467,5 +470,5 @@ test_dis "disassem &staticvar, &staticvar+1" "staticvar" gdb_test "disassem foostatic" ".*<\\+0>:.*End of assembler dump." \ "look at static function" -remote_exec build "rm -f ${subdir}/arch.inc" -remote_exec build "rm -f ${subdir}/note.inc" +remote_exec build "rm -f $arch_inc" +remote_exec build "rm -f $note_inc" |