* [commit] Rename some test binaries
@ 2009-06-09 17:16 Daniel Jacobowitz
2009-06-09 18:06 ` Tom Tromey
0 siblings, 1 reply; 4+ messages in thread
From: Daniel Jacobowitz @ 2009-06-09 17:16 UTC (permalink / raw)
To: gdb-patches
We do a lot of Linux-targeted cross GDB testing, where the remote
system shares the test directory with the host via NFS. There's
considerable performance advantages for doing it this way rather than
via scp. One downside is a sequence that NFS handles particularly
poorly:
* Create FILE on host
* Use FILE on target
* Delete FILE on host
* Create FILE on host with different contents
* Use FILE on target
NFS clients are pretty good about not getting the stale FILE in this
case, but sometimes they get transient "does not exist" or "stale"
errors. A lot of GDB tests which share a common source file trigger
this, by recompiling the source file into the same binary.
I've checked in this obvious patch, which gives a number of affected
tests unique output files. They continue to share source files. I
didn't audit for every output file used by every test, but these are
the only cases I've seen fail.
We'd need a more thorough check if we were going to parallelize .exp
files.
--
Daniel Jacobowitz
CodeSourcery
2009-06-09 Daniel Jacobowitz <dan@codesourcery.com>
* gdb.mi/mi-async.exp, gdb.mi/mi-basics.exp,
gdb.mi/mi-break.exp, gdb.mi/mi-cli.exp,
gdb.mi/mi-disassemble.exp, gdb.mi/mi-eval.exp,
gdb.mi/mi-file-transfer.exp, gdb.mi/mi-file.exp,
gdb.mi/mi-regs.exp, gdb.mi/mi-return.exp,
gdb.mi/mi-simplerun.exp, gdb.mi/mi-stepi.exp,
gdb.mi/mi-var-block.exp, gdb.mi/mi-var-cmd.exp,
gdb.mi/mi-var-display.exp, gdb.mi/mi-var-invalidate.exp,
gdb.mi/mi-watch.exp, gdb.mi/mi2-basics.exp,
gdb.mi/mi2-break.exp, gdb.mi/mi2-cli.exp,
gdb.mi/mi2-disassemble.exp, gdb.mi/mi2-eval.exp,
gdb.mi/mi2-file.exp, gdb.mi/mi2-regs.exp,
gdb.mi/mi2-return.exp, gdb.mi/mi2-simplerun.exp,
gdb.mi/mi2-stepi.exp, gdb.mi/mi2-var-block.exp,
gdb.mi/mi2-var-child.exp, gdb.mi/mi2-var-cmd.exp,
gdb.mi/mi2-var-display.exp, gdb.mi/mi2-watch.exp,
gdb.server/ext-run.exp, gdb.server/file-transfer.exp,
gdb.server/server-mon.exp, gdb.server/server-run.exp,
gdb.trace/actions.exp, gdb.trace/backtrace.exp,
gdb.trace/deltrace.exp, gdb.trace/infotrace.exp,
gdb.trace/packetlen.exp, gdb.trace/passc-dyn.exp,
gdb.trace/passcount.exp, gdb.trace/report.exp,
gdb.trace/save-trace.exp, gdb.trace/tfind.exp,
gdb.trace/tracecmd.exp, gdb.trace/while-dyn.exp,
gdb.trace/while-stepping.exp: Use a unique name for the compiled
executable.
Index: gdb.mi/mi-async.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-async.exp,v
retrieving revision 1.7
diff -u -p -r1.7 mi-async.exp
--- gdb.mi/mi-async.exp 3 Jan 2009 05:58:06 -0000 1.7
+++ gdb.mi/mi-async.exp 9 Jun 2009 17:08:31 -0000
@@ -38,7 +38,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-async
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-async.exp
return -1
Index: gdb.mi/mi-basics.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-basics.exp,v
retrieving revision 1.21
diff -u -p -r1.21 mi-basics.exp
--- gdb.mi/mi-basics.exp 3 Jan 2009 05:58:06 -0000 1.21
+++ gdb.mi/mi-basics.exp 9 Jun 2009 17:08:31 -0000
@@ -36,7 +36,7 @@ if [mi_gdb_start separate-inferior-tty]
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-basics
set escapedobjdir [string_to_regexp ${objdir}]
set envirodir [string_to_regexp ${objdir}/${subdir}]
Index: gdb.mi/mi-break.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-break.exp,v
retrieving revision 1.23
diff -u -p -r1.23 mi-break.exp
--- gdb.mi/mi-break.exp 26 Mar 2009 23:30:12 -0000 1.23
+++ gdb.mi/mi-break.exp 9 Jun 2009 17:08:31 -0000
@@ -35,7 +35,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-break
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-break.exp
return -1
Index: gdb.mi/mi-cli.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-cli.exp,v
retrieving revision 1.19
diff -u -p -r1.19 mi-cli.exp
--- gdb.mi/mi-cli.exp 13 Mar 2009 10:55:08 -0000 1.19
+++ gdb.mi/mi-cli.exp 9 Jun 2009 17:08:31 -0000
@@ -30,7 +30,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-cli
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-cli.exp
return -1
@@ -58,7 +58,7 @@ mi_gdb_test "-interpreter-exec console b
# {(=.*)+\^done} \
# "-interpreter-exec console \"file \$binfile\""
mi_gdb_test "-interpreter-exec console \"file $binfile\"" \
- {~"Reading symbols from .*basics...".*done} \
+ {~"Reading symbols from .*mi-cli...".*done} \
"-interpreter-exec console \"file \$binfile\""
mi_run_to_main
Index: gdb.mi/mi-disassemble.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-disassemble.exp,v
retrieving revision 1.21
diff -u -p -r1.21 mi-disassemble.exp
--- gdb.mi/mi-disassemble.exp 3 Jan 2009 05:58:06 -0000 1.21
+++ gdb.mi/mi-disassemble.exp 9 Jun 2009 17:08:31 -0000
@@ -31,7 +31,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-disassemble
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-disassemble.exp
return -1
Index: gdb.mi/mi-eval.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-eval.exp,v
retrieving revision 1.14
diff -u -p -r1.14 mi-eval.exp
--- gdb.mi/mi-eval.exp 3 Jan 2009 05:58:06 -0000 1.14
+++ gdb.mi/mi-eval.exp 9 Jun 2009 17:08:31 -0000
@@ -33,7 +33,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-eval
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-eval.exp
return -1
Index: gdb.mi/mi-file-transfer.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-file-transfer.exp,v
retrieving revision 1.3
diff -u -p -r1.3 mi-file-transfer.exp
--- gdb.mi/mi-file-transfer.exp 3 Jan 2009 05:58:06 -0000 1.3
+++ gdb.mi/mi-file-transfer.exp 9 Jun 2009 17:08:31 -0000
@@ -26,7 +26,7 @@ if { [skip_gdbserver_tests] } {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-file-transfer
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
untested mi-file-transfer.exp
return -1
Index: gdb.mi/mi-file.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-file.exp,v
retrieving revision 1.13
diff -u -p -r1.13 mi-file.exp
--- gdb.mi/mi-file.exp 3 Jan 2009 05:58:06 -0000 1.13
+++ gdb.mi/mi-file.exp 9 Jun 2009 17:08:31 -0000
@@ -34,7 +34,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-file
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-file.exp
return -1
Index: gdb.mi/mi-regs.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-regs.exp,v
retrieving revision 1.20
diff -u -p -r1.20 mi-regs.exp
--- gdb.mi/mi-regs.exp 3 Jan 2009 05:58:06 -0000 1.20
+++ gdb.mi/mi-regs.exp 9 Jun 2009 17:08:31 -0000
@@ -33,7 +33,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-regs
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-regs.exp
return -1
Index: gdb.mi/mi-return.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-return.exp,v
retrieving revision 1.18
diff -u -p -r1.18 mi-return.exp
--- gdb.mi/mi-return.exp 3 Jan 2009 05:58:06 -0000 1.18
+++ gdb.mi/mi-return.exp 9 Jun 2009 17:08:31 -0000
@@ -33,7 +33,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-return
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-return.exp
return -1
Index: gdb.mi/mi-simplerun.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-simplerun.exp,v
retrieving revision 1.23
diff -u -p -r1.23 mi-simplerun.exp
--- gdb.mi/mi-simplerun.exp 26 Mar 2009 23:30:12 -0000 1.23
+++ gdb.mi/mi-simplerun.exp 9 Jun 2009 17:08:31 -0000
@@ -35,7 +35,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-simplerun
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-simplerun.exp
return -1
Index: gdb.mi/mi-stepi.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-stepi.exp,v
retrieving revision 1.18
diff -u -p -r1.18 mi-stepi.exp
--- gdb.mi/mi-stepi.exp 3 Jan 2009 05:58:06 -0000 1.18
+++ gdb.mi/mi-stepi.exp 9 Jun 2009 17:08:31 -0000
@@ -33,7 +33,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-stepi
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-stepi.exp
return -1
Index: gdb.mi/mi-var-block.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-var-block.exp,v
retrieving revision 1.20
diff -u -p -r1.20 mi-var-block.exp
--- gdb.mi/mi-var-block.exp 3 Jan 2009 05:58:06 -0000 1.20
+++ gdb.mi/mi-var-block.exp 9 Jun 2009 17:08:31 -0000
@@ -30,7 +30,7 @@ if [mi_gdb_start] {
set testfile "var-cmd"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-var-block
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-var-block.exp
return -1
Index: gdb.mi/mi-var-cmd.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-var-cmd.exp,v
retrieving revision 1.42
diff -u -p -r1.42 mi-var-cmd.exp
--- gdb.mi/mi-var-cmd.exp 17 May 2009 07:13:19 -0000 1.42
+++ gdb.mi/mi-var-cmd.exp 9 Jun 2009 17:08:31 -0000
@@ -30,7 +30,7 @@ if [mi_gdb_start] {
set testfile "var-cmd"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-var-cmd
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-var-cmd.exp
return -1
Index: gdb.mi/mi-var-display.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-var-display.exp,v
retrieving revision 1.30
diff -u -p -r1.30 mi-var-display.exp
--- gdb.mi/mi-var-display.exp 3 Jan 2009 05:58:06 -0000 1.30
+++ gdb.mi/mi-var-display.exp 9 Jun 2009 17:08:31 -0000
@@ -30,7 +30,7 @@ if [mi_gdb_start] {
set testfile "var-cmd"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-var-display
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-var-display.exp
return -1
Index: gdb.mi/mi-var-invalidate.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-var-invalidate.exp,v
retrieving revision 1.5
diff -u -p -r1.5 mi-var-invalidate.exp
--- gdb.mi/mi-var-invalidate.exp 3 Jan 2009 05:58:06 -0000 1.5
+++ gdb.mi/mi-var-invalidate.exp 9 Jun 2009 17:08:31 -0000
@@ -30,13 +30,13 @@ if [mi_gdb_start] {
set testfile "var-cmd"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-var-invalidate
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-var-invalidate.exp
return -1
}
# Just change the output binary.
-set binfile_bis ${objdir}/${subdir}/${testfile}_bis
+set binfile_bis ${objdir}/${subdir}/mi-var-invalidate_bis
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile_bis}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-var-invalidate.exp
return -1
Index: gdb.mi/mi-watch.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi-watch.exp,v
retrieving revision 1.23
diff -u -p -r1.23 mi-watch.exp
--- gdb.mi/mi-watch.exp 3 Jan 2009 05:58:06 -0000 1.23
+++ gdb.mi/mi-watch.exp 9 Jun 2009 17:08:31 -0000
@@ -35,7 +35,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi-watch
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi-watch.exp
return -1
Index: gdb.mi/mi2-basics.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-basics.exp,v
retrieving revision 1.13
diff -u -p -r1.13 mi2-basics.exp
--- gdb.mi/mi2-basics.exp 3 Jan 2009 05:58:06 -0000 1.13
+++ gdb.mi/mi2-basics.exp 9 Jun 2009 17:08:31 -0000
@@ -36,7 +36,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-basics
set escapedobjdir [string_to_regexp ${objdir}]
set envirodir [string_to_regexp ${objdir}/${subdir}]
Index: gdb.mi/mi2-break.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-break.exp,v
retrieving revision 1.12
diff -u -p -r1.12 mi2-break.exp
--- gdb.mi/mi2-break.exp 26 Mar 2009 23:30:12 -0000 1.12
+++ gdb.mi/mi2-break.exp 9 Jun 2009 17:08:31 -0000
@@ -35,7 +35,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-break
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-break.exp
return -1
Index: gdb.mi/mi2-cli.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-cli.exp,v
retrieving revision 1.14
diff -u -p -r1.14 mi2-cli.exp
--- gdb.mi/mi2-cli.exp 3 Jan 2009 05:58:06 -0000 1.14
+++ gdb.mi/mi2-cli.exp 9 Jun 2009 17:08:31 -0000
@@ -30,7 +30,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-cli
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-cli.exp
return -1
@@ -58,7 +58,7 @@ mi_gdb_test "-interpreter-exec console b
# {(=.*)+\^done} \
# "-interpreter-exec console \"file \$binfile\""
mi_gdb_test "-interpreter-exec console \"file $binfile\"" \
- {~"Reading symbols from .*basics...".*\^done} \
+ {~"Reading symbols from .*mi2-cli...".*\^done} \
"-interpreter-exec console \"file \$binfile\""
mi_run_to_main
Index: gdb.mi/mi2-disassemble.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-disassemble.exp,v
retrieving revision 1.11
diff -u -p -r1.11 mi2-disassemble.exp
--- gdb.mi/mi2-disassemble.exp 3 Jan 2009 05:58:06 -0000 1.11
+++ gdb.mi/mi2-disassemble.exp 9 Jun 2009 17:08:31 -0000
@@ -31,7 +31,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-disassemble
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-disassemble.exp
return -1
Index: gdb.mi/mi2-eval.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-eval.exp,v
retrieving revision 1.8
diff -u -p -r1.8 mi2-eval.exp
--- gdb.mi/mi2-eval.exp 3 Jan 2009 05:58:06 -0000 1.8
+++ gdb.mi/mi2-eval.exp 9 Jun 2009 17:08:31 -0000
@@ -33,7 +33,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-eval
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-eval.exp
return -1
Index: gdb.mi/mi2-file.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-file.exp,v
retrieving revision 1.13
diff -u -p -r1.13 mi2-file.exp
--- gdb.mi/mi2-file.exp 3 Jan 2009 05:58:06 -0000 1.13
+++ gdb.mi/mi2-file.exp 9 Jun 2009 17:08:31 -0000
@@ -34,7 +34,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-file
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-file.exp
return -1
Index: gdb.mi/mi2-regs.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-regs.exp,v
retrieving revision 1.10
diff -u -p -r1.10 mi2-regs.exp
--- gdb.mi/mi2-regs.exp 3 Jan 2009 05:58:06 -0000 1.10
+++ gdb.mi/mi2-regs.exp 9 Jun 2009 17:08:31 -0000
@@ -33,7 +33,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-regs
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-regs.exp
return -1
Index: gdb.mi/mi2-return.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-return.exp,v
retrieving revision 1.10
diff -u -p -r1.10 mi2-return.exp
--- gdb.mi/mi2-return.exp 3 Jan 2009 05:58:06 -0000 1.10
+++ gdb.mi/mi2-return.exp 9 Jun 2009 17:08:31 -0000
@@ -33,7 +33,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-return
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-return.exp
return -1
Index: gdb.mi/mi2-simplerun.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-simplerun.exp,v
retrieving revision 1.14
diff -u -p -r1.14 mi2-simplerun.exp
--- gdb.mi/mi2-simplerun.exp 26 Mar 2009 23:30:12 -0000 1.14
+++ gdb.mi/mi2-simplerun.exp 9 Jun 2009 17:08:31 -0000
@@ -35,7 +35,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-simplerun
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-simplerun.exp
return -1
Index: gdb.mi/mi2-stepi.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-stepi.exp,v
retrieving revision 1.11
diff -u -p -r1.11 mi2-stepi.exp
--- gdb.mi/mi2-stepi.exp 3 Jan 2009 05:58:06 -0000 1.11
+++ gdb.mi/mi2-stepi.exp 9 Jun 2009 17:08:31 -0000
@@ -33,7 +33,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-stepi
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-stepi.exp
return -1
Index: gdb.mi/mi2-var-block.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-var-block.exp,v
retrieving revision 1.12
diff -u -p -r1.12 mi2-var-block.exp
--- gdb.mi/mi2-var-block.exp 3 Jan 2009 05:58:06 -0000 1.12
+++ gdb.mi/mi2-var-block.exp 9 Jun 2009 17:08:32 -0000
@@ -30,7 +30,7 @@ if [mi_gdb_start] {
set testfile "var-cmd"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-var-block
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-var-block.exp
return -1
Index: gdb.mi/mi2-var-child.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-var-child.exp,v
retrieving revision 1.13
diff -u -p -r1.13 mi2-var-child.exp
--- gdb.mi/mi2-var-child.exp 26 Mar 2008 13:24:21 -0000 1.13
+++ gdb.mi/mi2-var-child.exp 9 Jun 2009 17:08:32 -0000
@@ -29,7 +29,7 @@ if [mi_gdb_start] {
set testfile "var-cmd"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-var-child
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-var-child.exp
return -1
Index: gdb.mi/mi2-var-cmd.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-var-cmd.exp,v
retrieving revision 1.21
diff -u -p -r1.21 mi2-var-cmd.exp
--- gdb.mi/mi2-var-cmd.exp 3 Jan 2009 05:58:06 -0000 1.21
+++ gdb.mi/mi2-var-cmd.exp 9 Jun 2009 17:08:32 -0000
@@ -30,7 +30,7 @@ if [mi_gdb_start] {
set testfile "var-cmd"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-var-cmd
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-var-cmd.exp
return -1
Index: gdb.mi/mi2-var-display.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-var-display.exp,v
retrieving revision 1.23
diff -u -p -r1.23 mi2-var-display.exp
--- gdb.mi/mi2-var-display.exp 3 Jan 2009 05:58:06 -0000 1.23
+++ gdb.mi/mi2-var-display.exp 9 Jun 2009 17:08:32 -0000
@@ -30,7 +30,7 @@ if [mi_gdb_start] {
set testfile "var-cmd"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-var-display
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-var-display.exp
return -1
Index: gdb.mi/mi2-watch.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/mi2-watch.exp,v
retrieving revision 1.14
diff -u -p -r1.14 mi2-watch.exp
--- gdb.mi/mi2-watch.exp 3 Jan 2009 05:58:06 -0000 1.14
+++ gdb.mi/mi2-watch.exp 9 Jun 2009 17:08:32 -0000
@@ -35,7 +35,7 @@ if [mi_gdb_start] {
set testfile "basics"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/mi2-watch
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
untested mi2-watch.exp
return -1
Index: gdb.server/ext-run.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.server/ext-run.exp,v
retrieving revision 1.4
diff -u -p -r1.4 ext-run.exp
--- gdb.server/ext-run.exp 3 Jan 2009 05:58:06 -0000 1.4
+++ gdb.server/ext-run.exp 9 Jun 2009 17:08:32 -0000
@@ -21,7 +21,7 @@ load_lib gdbserver-support.exp
set testfile "server"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/ext-run
if { [skip_gdbserver_tests] } {
return 0
Index: gdb.server/file-transfer.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.server/file-transfer.exp,v
retrieving revision 1.4
diff -u -p -r1.4 file-transfer.exp
--- gdb.server/file-transfer.exp 22 Jan 2009 16:01:10 -0000 1.4
+++ gdb.server/file-transfer.exp 9 Jun 2009 17:08:32 -0000
@@ -20,7 +20,7 @@ load_lib gdbserver-support.exp
set testfile "server"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}${EXEEXT}
+set binfile ${objdir}/${subdir}/file-transfer${EXEEXT}
if { [skip_gdbserver_tests] } {
return 0
Index: gdb.server/server-mon.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.server/server-mon.exp,v
retrieving revision 1.5
diff -u -p -r1.5 server-mon.exp
--- gdb.server/server-mon.exp 3 Jan 2009 05:58:06 -0000 1.5
+++ gdb.server/server-mon.exp 9 Jun 2009 17:08:32 -0000
@@ -21,7 +21,7 @@ load_lib gdbserver-support.exp
set testfile "server"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/server-mon
if { [skip_gdbserver_tests] } {
return 0
Index: gdb.server/server-run.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.server/server-run.exp,v
retrieving revision 1.7
diff -u -p -r1.7 server-run.exp
--- gdb.server/server-run.exp 3 Jan 2009 05:58:06 -0000 1.7
+++ gdb.server/server-run.exp 9 Jun 2009 17:08:32 -0000
@@ -21,7 +21,7 @@ load_lib gdbserver-support.exp
set testfile "server"
set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+set binfile ${objdir}/${subdir}/server-run
if { [skip_gdbserver_tests] } {
return 0
Index: gdb.trace/actions.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/actions.exp,v
retrieving revision 1.10
diff -u -p -r1.10 actions.exp
--- gdb.trace/actions.exp 31 Mar 2009 05:08:37 -0000 1.10
+++ gdb.trace/actions.exp 9 Jun 2009 17:08:32 -0000
@@ -33,7 +33,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/actions
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
untested actions.exp
Index: gdb.trace/backtrace.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/backtrace.exp,v
retrieving revision 1.10
diff -u -p -r1.10 backtrace.exp
--- gdb.trace/backtrace.exp 3 Jan 2009 05:58:07 -0000 1.10
+++ gdb.trace/backtrace.exp 9 Jun 2009 17:08:32 -0000
@@ -49,7 +49,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/backtrace
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
untested backtrace.exp
Index: gdb.trace/deltrace.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/deltrace.exp,v
retrieving revision 1.11
diff -u -p -r1.11 deltrace.exp
--- gdb.trace/deltrace.exp 31 Mar 2009 05:08:37 -0000 1.11
+++ gdb.trace/deltrace.exp 9 Jun 2009 17:08:32 -0000
@@ -33,7 +33,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/deltrace
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
untested deltrace.exp
Index: gdb.trace/infotrace.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/infotrace.exp,v
retrieving revision 1.11
diff -u -p -r1.11 infotrace.exp
--- gdb.trace/infotrace.exp 31 Mar 2009 05:08:37 -0000 1.11
+++ gdb.trace/infotrace.exp 9 Jun 2009 17:08:32 -0000
@@ -33,7 +33,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/infotrace
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
untested infotrace.exp
Index: gdb.trace/packetlen.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/packetlen.exp,v
retrieving revision 1.9
diff -u -p -r1.9 packetlen.exp
--- gdb.trace/packetlen.exp 3 Jan 2009 05:58:07 -0000 1.9
+++ gdb.trace/packetlen.exp 9 Jun 2009 17:08:32 -0000
@@ -49,7 +49,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/packetlen
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
untested packetlen.exp
Index: gdb.trace/passc-dyn.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/passc-dyn.exp,v
retrieving revision 1.11
diff -u -p -r1.11 passc-dyn.exp
--- gdb.trace/passc-dyn.exp 3 Jan 2009 05:58:07 -0000 1.11
+++ gdb.trace/passc-dyn.exp 9 Jun 2009 17:08:32 -0000
@@ -48,7 +48,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/passc-dyn
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
untested passc-dyn.exp
Index: gdb.trace/passcount.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/passcount.exp,v
retrieving revision 1.11
diff -u -p -r1.11 passcount.exp
--- gdb.trace/passcount.exp 31 Mar 2009 05:08:37 -0000 1.11
+++ gdb.trace/passcount.exp 9 Jun 2009 17:08:32 -0000
@@ -32,7 +32,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/passcount
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
untested passcount.exp
Index: gdb.trace/report.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/report.exp,v
retrieving revision 1.10
diff -u -p -r1.10 report.exp
--- gdb.trace/report.exp 3 Jan 2009 05:58:07 -0000 1.10
+++ gdb.trace/report.exp 9 Jun 2009 17:08:32 -0000
@@ -49,7 +49,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/report
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
untested report.exp
Index: gdb.trace/save-trace.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/save-trace.exp,v
retrieving revision 1.11
diff -u -p -r1.11 save-trace.exp
--- gdb.trace/save-trace.exp 31 Mar 2009 05:08:37 -0000 1.11
+++ gdb.trace/save-trace.exp 9 Jun 2009 17:08:32 -0000
@@ -33,7 +33,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/save-trace
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
untested save-trace.exp
Index: gdb.trace/tfind.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/tfind.exp,v
retrieving revision 1.13
diff -u -p -r1.13 tfind.exp
--- gdb.trace/tfind.exp 3 Jan 2009 05:58:07 -0000 1.13
+++ gdb.trace/tfind.exp 9 Jun 2009 17:08:32 -0000
@@ -50,7 +50,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/tfind
if { [gdb_compile "$srcdir/$subdir/$srcfile" "$binfile" \
executable {debug nowarnings}] != "" } {
Index: gdb.trace/tracecmd.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/tracecmd.exp,v
retrieving revision 1.11
diff -u -p -r1.11 tracecmd.exp
--- gdb.trace/tracecmd.exp 31 Mar 2009 05:08:37 -0000 1.11
+++ gdb.trace/tracecmd.exp 9 Jun 2009 17:08:32 -0000
@@ -32,7 +32,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/tracecmd
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
untested tracecmd.exp
Index: gdb.trace/while-dyn.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/while-dyn.exp,v
retrieving revision 1.10
diff -u -p -r1.10 while-dyn.exp
--- gdb.trace/while-dyn.exp 3 Jan 2009 05:58:07 -0000 1.10
+++ gdb.trace/while-dyn.exp 9 Jun 2009 17:08:32 -0000
@@ -50,7 +50,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile $testfile.c
- set binfile $objdir/$subdir/$testfile
+ set binfile $objdir/$subdir/while-dyn
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
executable {debug nowarnings}] != "" } {
untested while-dyn.exp
Index: gdb.trace/while-stepping.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.trace/while-stepping.exp,v
retrieving revision 1.11
diff -u -p -r1.11 while-stepping.exp
--- gdb.trace/while-stepping.exp 31 Mar 2009 05:08:37 -0000 1.11
+++ gdb.trace/while-stepping.exp 9 Jun 2009 17:08:32 -0000
@@ -33,7 +33,7 @@ if [istarget "m68k-*-elf"] then {
} else {
set testfile "actions"
set srcfile ${testfile}.c
- set binfile ${objdir}/${subdir}/${testfile}
+ set binfile ${objdir}/${subdir}/while-stepping
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" $binfile \
executable {debug nowarnings}] != "" } {
untested while-stepping.exp
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [commit] Rename some test binaries
2009-06-09 17:16 [commit] Rename some test binaries Daniel Jacobowitz
@ 2009-06-09 18:06 ` Tom Tromey
2009-06-09 18:12 ` Daniel Jacobowitz
0 siblings, 1 reply; 4+ messages in thread
From: Tom Tromey @ 2009-06-09 18:06 UTC (permalink / raw)
To: gdb-patches
>>>>> "Daniel" == Daniel Jacobowitz <drow@false.org> writes:
Daniel> I've checked in this obvious patch, which gives a number of affected
Daniel> tests unique output files. They continue to share source files. I
Daniel> didn't audit for every output file used by every test, but these are
Daniel> the only cases I've seen fail.
I think this also needs patches to all the Makefile.in's.
Unless you want to take the opportunity to get rid of this stuff... :)
Daniel> We'd need a more thorough check if we were going to parallelize .exp
Daniel> files.
This sure would be nice.
Tom
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [commit] Rename some test binaries
2009-06-09 18:06 ` Tom Tromey
@ 2009-06-09 18:12 ` Daniel Jacobowitz
2009-06-09 18:49 ` Tom Tromey
0 siblings, 1 reply; 4+ messages in thread
From: Daniel Jacobowitz @ 2009-06-09 18:12 UTC (permalink / raw)
To: Tom Tromey; +Cc: gdb-patches
On Tue, Jun 09, 2009 at 12:06:18PM -0600, Tom Tromey wrote:
> >>>>> "Daniel" == Daniel Jacobowitz <drow@false.org> writes:
>
> Daniel> I've checked in this obvious patch, which gives a number of affected
> Daniel> tests unique output files. They continue to share source files. I
> Daniel> didn't audit for every output file used by every test, but these are
> Daniel> the only cases I've seen fail.
>
> I think this also needs patches to all the Makefile.in's.
> Unless you want to take the opportunity to get rid of this stuff... :)
Are they actually current? If they are, I'll update them... last I
remember they were very stale.
> Daniel> We'd need a more thorough check if we were going to parallelize .exp
> Daniel> files.
>
> This sure would be nice.
I was looking at the rules GCC uses today. It looks like it would be
easy to migrate, but the Make goo involved is over my head. Splitting
gdb.base in half and then parallelizing the rest at directory
granularity should do a lot of good on a modern 4-way or 8-way system.
Want to give it a shot? :-)
--
Daniel Jacobowitz
CodeSourcery
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [commit] Rename some test binaries
2009-06-09 18:12 ` Daniel Jacobowitz
@ 2009-06-09 18:49 ` Tom Tromey
0 siblings, 0 replies; 4+ messages in thread
From: Tom Tromey @ 2009-06-09 18:49 UTC (permalink / raw)
To: gdb-patches
>>>>> "Daniel" == Daniel Jacobowitz <drow@false.org> writes:
Tom> I think this also needs patches to all the Makefile.in's.
Tom> Unless you want to take the opportunity to get rid of this stuff... :)
Daniel> Are they actually current? If they are, I'll update them... last I
Daniel> remember they were very stale.
I don't know. Actually I thought you were the one who got me to
update some test suite patch to do this ;). But I don't really
remember.
I was thinking about just renaming them all to add a ".exe" suffix, to
make the clean rule trivial. Maybe there's some other way to drop
this stuff, though.
Daniel> I was looking at the rules GCC uses today. It looks like it would be
Daniel> easy to migrate, but the Make goo involved is over my head. Splitting
Daniel> gdb.base in half and then parallelizing the rest at directory
Daniel> granularity should do a lot of good on a modern 4-way or 8-way system.
Daniel> Want to give it a shot? :-)
It's been on my to-try list for months, but you know how that goes.
Tom
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-06-09 18:49 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-09 17:16 [commit] Rename some test binaries Daniel Jacobowitz
2009-06-09 18:06 ` Tom Tromey
2009-06-09 18:12 ` Daniel Jacobowitz
2009-06-09 18:49 ` Tom Tromey
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox