From: Tom de Vries Date: Thu, 30 Sep 2021 17:07:48 +0000 (+0200) Subject: [gdb/testsuite] Fix DUPLICATE in gdb.base/cvexpr.exp X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=85d74f293624dec19180d817436818567dc8f9b3;p=binutils-gdb.git [gdb/testsuite] Fix DUPLICATE in gdb.base/cvexpr.exp Fix: ... DUPLICATE: gdb.base/cvexpr.exp: ptype int * restrict ... using with_test_prefix. Tested on x86_64-linux. --- diff --git a/gdb/testsuite/gdb.base/cvexpr.exp b/gdb/testsuite/gdb.base/cvexpr.exp index c434c11f45f..33ae1be0322 100644 --- a/gdb/testsuite/gdb.base/cvexpr.exp +++ b/gdb/testsuite/gdb.base/cvexpr.exp @@ -514,7 +514,9 @@ gdb_test "ptype int * restrict" "type = int \\* restrict" # C++ does not have "restrict". gdb_test_no_output "set lang c++" -gdb_test "ptype int * restrict" "A syntax error in expression.*" +with_test_prefix c++ { + gdb_test "ptype int * restrict" "A syntax error in expression.*" -# There is a GCC extension for __restrict__, though. -gdb_test "ptype int * __restrict__" "type = int \\* __restrict__" + # There is a GCC extension for __restrict__, though. + gdb_test "ptype int * __restrict__" "type = int \\* __restrict__" +}