From: Pedro Alves Date: Mon, 21 Jun 2021 21:20:21 +0000 (+0100) Subject: Fix all DUPLICATE problems in testsuite/gdb.perf/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d8767a720e889b4b90f2a8a60a43d9fd400f4478;p=binutils-gdb.git Fix all DUPLICATE problems in testsuite/gdb.perf/ Currently running "make check-perf" shows: ... # of duplicate test names 6008 ... All those duplicate test names come from gdb.perf/skip-command.exp. This commit fixes them, using with_test_prefix. gdb/testsuite/ yyyy-mm-dd Pedro Alves * gdb.perf/skip-command.exp (run_skip_bench): Wrap each for iteration in with_test_prefix. Change-Id: I38501cf70bc6b60306ee7228996ee7bcd858dc1b --- diff --git a/gdb/testsuite/gdb.perf/skip-command.exp b/gdb/testsuite/gdb.perf/skip-command.exp index e396262af06..d9f31a7e8f5 100644 --- a/gdb/testsuite/gdb.perf/skip-command.exp +++ b/gdb/testsuite/gdb.perf/skip-command.exp @@ -101,9 +101,12 @@ proc run_skip_bench { kind text } { gdb_test_no_output "set variable flag = 1" for { set i 0 } { $i < 5 } { incr i } { - set nr_skips [expr $i * $SKIP_DIRECTIVE_COUNT] - install_skips $kind $text $nr_skips - gdb_test_python_run "SkipCommand\(\"skip-$kind-$nr_skips\", ${SKIP_STEP_COUNT}\)" + with_test_prefix "iter $i" { + set nr_skips [expr $i * $SKIP_DIRECTIVE_COUNT] + install_skips $kind $text $nr_skips + gdb_test_python_run \ + "SkipCommand\(\"skip-$kind-$nr_skips\", ${SKIP_STEP_COUNT}\)" + } } gdb_test "set variable flag = 0"