[pushed] Remove path name from test case

Message ID 20231114184906.3664984-1-tromey@adacore.com
State New
Headers
Series [pushed] Remove path name from test case |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gdb_build--master-arm warning Patch is already merged
linaro-tcwg-bot/tcwg_gdb_build--master-aarch64 warning Patch is already merged

Commit Message

Tom Tromey Nov. 14, 2023, 6:49 p.m. UTC
  'runtest' complains about a path in a test name, from the new test
case py-missing-debug.exp.

This patch fixes the problem by providing an explicit test name to
gdb_test.  I chose something very basic because the block in question
is already wrapped in with_test_prefix.
---
 gdb/testsuite/gdb.python/py-missing-debug.exp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
  

Comments

Andrew Burgess Nov. 15, 2023, 9:17 a.m. UTC | #1
Tom Tromey <tromey@adacore.com> writes:

> 'runtest' complains about a path in a test name, from the new test
> case py-missing-debug.exp.
>
> This patch fixes the problem by providing an explicit test name to
> gdb_test.  I chose something very basic because the block in question
> is already wrapped in with_test_prefix.

Thanks for fixing this.  Not sure how I managed to miss this warning.

Thanks,
Andrew




> ---
>  gdb/testsuite/gdb.python/py-missing-debug.exp | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/gdb/testsuite/gdb.python/py-missing-debug.exp b/gdb/testsuite/gdb.python/py-missing-debug.exp
> index 3e0d70b9d22..0d73d2bf8d8 100644
> --- a/gdb/testsuite/gdb.python/py-missing-debug.exp
> +++ b/gdb/testsuite/gdb.python/py-missing-debug.exp
> @@ -321,7 +321,8 @@ with_test_prefix "enable 'abc-def'" {
>      set re [string_to_regexp $binfile]
>  
>      gdb_test "enable missing-debug-handler \"$re\" abc-def" \
> -	"^1 missing debug handler enabled"
> +	"^1 missing debug handler enabled" \
> +	"enable missing-debug-handler"
>  
>      gdb_test "info missing-debug-handlers" \
>  	[multi_line \
> -- 
> 2.41.0
  

Patch

diff --git a/gdb/testsuite/gdb.python/py-missing-debug.exp b/gdb/testsuite/gdb.python/py-missing-debug.exp
index 3e0d70b9d22..0d73d2bf8d8 100644
--- a/gdb/testsuite/gdb.python/py-missing-debug.exp
+++ b/gdb/testsuite/gdb.python/py-missing-debug.exp
@@ -321,7 +321,8 @@  with_test_prefix "enable 'abc-def'" {
     set re [string_to_regexp $binfile]
 
     gdb_test "enable missing-debug-handler \"$re\" abc-def" \
-	"^1 missing debug handler enabled"
+	"^1 missing debug handler enabled" \
+	"enable missing-debug-handler"
 
     gdb_test "info missing-debug-handlers" \
 	[multi_line \