From 6dbc505a74ac6bb930a4b7306e60ea3a439bb886 Mon Sep 17 00:00:00 2001 From: Tom de Vries Date: Fri, 15 May 2020 14:49:48 +0200 Subject: [PATCH] [gdb/testsuite] Rename *.exp.in to *.exp.tcl Say we have some common tcl code that we want to include in test-cases t1.exp and t1.exp. We could put the common code into a file common.exp alongside the test-cases, but that will make dejagnu treat that file as another test-case. To prevent this, we use a suffix, currently .in, in other words we put the common code in a file common.exp.in. The .in suffix however is also used in autoconf, which might cause confusion. Change the suffix from .in to .tcl. gdb/testsuite/ChangeLog: 2020-05-15 Tom de Vries * gdb.base/align.exp.in: Rename to ... * gdb.base/align.exp.tcl: ... this. * gdb.base/align-c++.exp: Update. * gdb.base/align-c.exp: Update. * gdb.base/all-architectures.exp.in: Rename to ... * gdb.base/all-architectures.exp: ... this. * gdb.base/all-architectures-0.exp: Update. * gdb.base/all-architectures-1.exp: Update. * gdb.base/all-architectures-2.exp: Update. * gdb.base/all-architectures-3.exp: Update. * gdb.base/all-architectures-4.exp: Update. * gdb.base/all-architectures-5.exp: Update. * gdb.base/all-architectures-6.exp: Update. * gdb.base/all-architectures-7.exp: Update. * gdb.base/infcall-nested-structs.exp.in: Rename to ... * gdb.base/infcall-nested-structs.exp.tcl: ... this. * gdb.base/infcall-nested-structs-c++.exp: Update. * gdb.base/infcall-nested-structs-c.exp: Update. * gdb.base/info-types.exp.in: Rename to ... * gdb.base/info-types.exp.tcl: ... this. * gdb.base/info-types-c++.exp: Update. * gdb.base/info-types-c.exp: Update. * gdb.base/max-depth.exp.in: Rename to ... * gdb.base/max-depth.exp.tcl: ... this. * gdb.base/max-depth-c++.exp: Update. * gdb.base/max-depth-c.exp: Update. * gdb.cp/cpexprs.exp.in: Rename to ... * gdb.cp/cpexprs.exp.tcl: ... this. * gdb.cp/cpexprs-debug-types.exp: Update. * gdb.cp/cpexprs.exp: Update. * gdb.cp/infcall-nodebug.exp.in: Rename to ... * gdb.cp/infcall-nodebug.exp.tcl: ... this. * gdb.cp/infcall-nodebug-c++-d0.exp: Update. * gdb.cp/infcall-nodebug-c++-d1.exp: Update. * gdb.cp/infcall-nodebug-c-d0.exp: Update. * gdb.cp/infcall-nodebug-c-d1.exp: Update. * gdb.dwarf2/clang-debug-names.exp.in: Rename to ... * gdb.dwarf2/clang-debug-names.exp.tcl: ... this. * gdb.dwarf2/clang-debug-names-2.exp: Update. * gdb.dwarf2/clang-debug-names.exp: Update. --- gdb/testsuite/ChangeLog | 43 +++++++++++++++++++ gdb/testsuite/gdb.base/align-c++.exp | 2 +- gdb/testsuite/gdb.base/align-c.exp | 2 +- .../gdb.base/{align.exp.in => align.exp.tcl} | 0 .../gdb.base/all-architectures-0.exp | 2 +- .../gdb.base/all-architectures-1.exp | 2 +- .../gdb.base/all-architectures-2.exp | 2 +- .../gdb.base/all-architectures-3.exp | 2 +- .../gdb.base/all-architectures-4.exp | 2 +- .../gdb.base/all-architectures-5.exp | 2 +- .../gdb.base/all-architectures-6.exp | 2 +- .../gdb.base/all-architectures-7.exp | 2 +- ...tures.exp.in => all-architectures.exp.tcl} | 0 .../gdb.base/infcall-nested-structs-c++.exp | 2 +- .../gdb.base/infcall-nested-structs-c.exp | 2 +- ....exp.in => infcall-nested-structs.exp.tcl} | 0 gdb/testsuite/gdb.base/info-types-c++.exp | 2 +- gdb/testsuite/gdb.base/info-types-c.exp | 2 +- .../{info-types.exp.in => info-types.exp.tcl} | 0 gdb/testsuite/gdb.base/max-depth-c++.exp | 2 +- gdb/testsuite/gdb.base/max-depth-c.exp | 2 +- .../{max-depth.exp.in => max-depth.exp.tcl} | 0 gdb/testsuite/gdb.cp/cpexprs-debug-types.exp | 2 +- gdb/testsuite/gdb.cp/cpexprs.exp | 2 +- .../{cpexprs.exp.in => cpexprs.exp.tcl} | 0 .../gdb.cp/infcall-nodebug-c++-d0.exp | 2 +- .../gdb.cp/infcall-nodebug-c++-d1.exp | 2 +- gdb/testsuite/gdb.cp/infcall-nodebug-c-d0.exp | 2 +- gdb/testsuite/gdb.cp/infcall-nodebug-c-d1.exp | 2 +- ...nodebug.exp.in => infcall-nodebug.exp.tcl} | 0 .../gdb.dwarf2/clang-debug-names-2.exp | 2 +- .../gdb.dwarf2/clang-debug-names.exp | 2 +- ...names.exp.in => clang-debug-names.exp.tcl} | 0 33 files changed, 67 insertions(+), 24 deletions(-) rename gdb/testsuite/gdb.base/{align.exp.in => align.exp.tcl} (100%) rename gdb/testsuite/gdb.base/{all-architectures.exp.in => all-architectures.exp.tcl} (100%) rename gdb/testsuite/gdb.base/{infcall-nested-structs.exp.in => infcall-nested-structs.exp.tcl} (100%) rename gdb/testsuite/gdb.base/{info-types.exp.in => info-types.exp.tcl} (100%) rename gdb/testsuite/gdb.base/{max-depth.exp.in => max-depth.exp.tcl} (100%) rename gdb/testsuite/gdb.cp/{cpexprs.exp.in => cpexprs.exp.tcl} (100%) rename gdb/testsuite/gdb.cp/{infcall-nodebug.exp.in => infcall-nodebug.exp.tcl} (100%) rename gdb/testsuite/gdb.dwarf2/{clang-debug-names.exp.in => clang-debug-names.exp.tcl} (100%) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 5a523c2d2b..30a150d782 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,46 @@ +2020-05-15 Tom de Vries + + * gdb.base/align.exp.in: Rename to ... + * gdb.base/align.exp.tcl: ... this. + * gdb.base/align-c++.exp: Update. + * gdb.base/align-c.exp: Update. + * gdb.base/all-architectures.exp.in: Rename to ... + * gdb.base/all-architectures.exp: ... this. + * gdb.base/all-architectures-0.exp: Update. + * gdb.base/all-architectures-1.exp: Update. + * gdb.base/all-architectures-2.exp: Update. + * gdb.base/all-architectures-3.exp: Update. + * gdb.base/all-architectures-4.exp: Update. + * gdb.base/all-architectures-5.exp: Update. + * gdb.base/all-architectures-6.exp: Update. + * gdb.base/all-architectures-7.exp: Update. + * gdb.base/infcall-nested-structs.exp.in: Rename to ... + * gdb.base/infcall-nested-structs.exp.tcl: ... this. + * gdb.base/infcall-nested-structs-c++.exp: Update. + * gdb.base/infcall-nested-structs-c.exp: Update. + * gdb.base/info-types.exp.in: Rename to ... + * gdb.base/info-types.exp.tcl: ... this. + * gdb.base/info-types-c++.exp: Update. + * gdb.base/info-types-c.exp: Update. + * gdb.base/max-depth.exp.in: Rename to ... + * gdb.base/max-depth.exp.tcl: ... this. + * gdb.base/max-depth-c++.exp: Update. + * gdb.base/max-depth-c.exp: Update. + * gdb.cp/cpexprs.exp.in: Rename to ... + * gdb.cp/cpexprs.exp.tcl: ... this. + * gdb.cp/cpexprs-debug-types.exp: Update. + * gdb.cp/cpexprs.exp: Update. + * gdb.cp/infcall-nodebug.exp.in: Rename to ... + * gdb.cp/infcall-nodebug.exp.tcl: ... this. + * gdb.cp/infcall-nodebug-c++-d0.exp: Update. + * gdb.cp/infcall-nodebug-c++-d1.exp: Update. + * gdb.cp/infcall-nodebug-c-d0.exp: Update. + * gdb.cp/infcall-nodebug-c-d1.exp: Update. + * gdb.dwarf2/clang-debug-names.exp.in: Rename to ... + * gdb.dwarf2/clang-debug-names.exp.tcl: ... this. + * gdb.dwarf2/clang-debug-names-2.exp: Update. + * gdb.dwarf2/clang-debug-names.exp: Update. + 2020-05-15 Andrew Burgess * lib/check-test-names.exp: Remove code that prevents this file diff --git a/gdb/testsuite/gdb.base/align-c++.exp b/gdb/testsuite/gdb.base/align-c++.exp index 09632d8bfa..6266d11282 100644 --- a/gdb/testsuite/gdb.base/align-c++.exp +++ b/gdb/testsuite/gdb.base/align-c++.exp @@ -24,4 +24,4 @@ if { [skip_cplus_tests] || [get_compiler_info "c++"] } { } set lang c++ -source $srcdir/$subdir/align.exp.in +source $srcdir/$subdir/align.exp.tcl diff --git a/gdb/testsuite/gdb.base/align-c.exp b/gdb/testsuite/gdb.base/align-c.exp index d7852f4ea8..d42abc8d38 100644 --- a/gdb/testsuite/gdb.base/align-c.exp +++ b/gdb/testsuite/gdb.base/align-c.exp @@ -20,4 +20,4 @@ set lang c -source $srcdir/$subdir/align.exp.in +source $srcdir/$subdir/align.exp.tcl diff --git a/gdb/testsuite/gdb.base/align.exp.in b/gdb/testsuite/gdb.base/align.exp.tcl similarity index 100% rename from gdb/testsuite/gdb.base/align.exp.in rename to gdb/testsuite/gdb.base/align.exp.tcl diff --git a/gdb/testsuite/gdb.base/all-architectures-0.exp b/gdb/testsuite/gdb.base/all-architectures-0.exp index 767daac9ff..d861c41aff 100644 --- a/gdb/testsuite/gdb.base/all-architectures-0.exp +++ b/gdb/testsuite/gdb.base/all-architectures-0.exp @@ -14,4 +14,4 @@ # along with this program. If not, see . */ set test_slice 0 -source $srcdir/$subdir/all-architectures.exp.in +source $srcdir/$subdir/all-architectures.exp.tcl diff --git a/gdb/testsuite/gdb.base/all-architectures-1.exp b/gdb/testsuite/gdb.base/all-architectures-1.exp index 91aad9dc86..0e6379eea5 100644 --- a/gdb/testsuite/gdb.base/all-architectures-1.exp +++ b/gdb/testsuite/gdb.base/all-architectures-1.exp @@ -14,4 +14,4 @@ # along with this program. If not, see . */ set test_slice 1 -source $srcdir/$subdir/all-architectures.exp.in +source $srcdir/$subdir/all-architectures.exp.tcl diff --git a/gdb/testsuite/gdb.base/all-architectures-2.exp b/gdb/testsuite/gdb.base/all-architectures-2.exp index c24a332bc2..6216d48a7c 100644 --- a/gdb/testsuite/gdb.base/all-architectures-2.exp +++ b/gdb/testsuite/gdb.base/all-architectures-2.exp @@ -14,4 +14,4 @@ # along with this program. If not, see . */ set test_slice 2 -source $srcdir/$subdir/all-architectures.exp.in +source $srcdir/$subdir/all-architectures.exp.tcl diff --git a/gdb/testsuite/gdb.base/all-architectures-3.exp b/gdb/testsuite/gdb.base/all-architectures-3.exp index a88a38b3a9..bd873a9666 100644 --- a/gdb/testsuite/gdb.base/all-architectures-3.exp +++ b/gdb/testsuite/gdb.base/all-architectures-3.exp @@ -14,4 +14,4 @@ # along with this program. If not, see . */ set test_slice 3 -source $srcdir/$subdir/all-architectures.exp.in +source $srcdir/$subdir/all-architectures.exp.tcl diff --git a/gdb/testsuite/gdb.base/all-architectures-4.exp b/gdb/testsuite/gdb.base/all-architectures-4.exp index f6c9fc4cef..17b0160036 100644 --- a/gdb/testsuite/gdb.base/all-architectures-4.exp +++ b/gdb/testsuite/gdb.base/all-architectures-4.exp @@ -14,4 +14,4 @@ # along with this program. If not, see . */ set test_slice 4 -source $srcdir/$subdir/all-architectures.exp.in +source $srcdir/$subdir/all-architectures.exp.tcl diff --git a/gdb/testsuite/gdb.base/all-architectures-5.exp b/gdb/testsuite/gdb.base/all-architectures-5.exp index e84441be4a..613ae6fdf1 100644 --- a/gdb/testsuite/gdb.base/all-architectures-5.exp +++ b/gdb/testsuite/gdb.base/all-architectures-5.exp @@ -14,4 +14,4 @@ # along with this program. If not, see . */ set test_slice 5 -source $srcdir/$subdir/all-architectures.exp.in +source $srcdir/$subdir/all-architectures.exp.tcl diff --git a/gdb/testsuite/gdb.base/all-architectures-6.exp b/gdb/testsuite/gdb.base/all-architectures-6.exp index 702b5237d2..3dceb5e1f8 100644 --- a/gdb/testsuite/gdb.base/all-architectures-6.exp +++ b/gdb/testsuite/gdb.base/all-architectures-6.exp @@ -14,4 +14,4 @@ # along with this program. If not, see . */ set test_slice 6 -source $srcdir/$subdir/all-architectures.exp.in +source $srcdir/$subdir/all-architectures.exp.tcl diff --git a/gdb/testsuite/gdb.base/all-architectures-7.exp b/gdb/testsuite/gdb.base/all-architectures-7.exp index 2d0705b384..ba7640ce44 100644 --- a/gdb/testsuite/gdb.base/all-architectures-7.exp +++ b/gdb/testsuite/gdb.base/all-architectures-7.exp @@ -14,4 +14,4 @@ # along with this program. If not, see . */ set test_slice 7 -source $srcdir/$subdir/all-architectures.exp.in +source $srcdir/$subdir/all-architectures.exp.tcl diff --git a/gdb/testsuite/gdb.base/all-architectures.exp.in b/gdb/testsuite/gdb.base/all-architectures.exp.tcl similarity index 100% rename from gdb/testsuite/gdb.base/all-architectures.exp.in rename to gdb/testsuite/gdb.base/all-architectures.exp.tcl diff --git a/gdb/testsuite/gdb.base/infcall-nested-structs-c++.exp b/gdb/testsuite/gdb.base/infcall-nested-structs-c++.exp index 9da0621384..4741e0dade 100644 --- a/gdb/testsuite/gdb.base/infcall-nested-structs-c++.exp +++ b/gdb/testsuite/gdb.base/infcall-nested-structs-c++.exp @@ -21,4 +21,4 @@ if { [skip_cplus_tests] || [get_compiler_info "c++"] } { } set lang c++ -source $srcdir/$subdir/infcall-nested-structs.exp.in +source $srcdir/$subdir/infcall-nested-structs.exp.tcl diff --git a/gdb/testsuite/gdb.base/infcall-nested-structs-c.exp b/gdb/testsuite/gdb.base/infcall-nested-structs-c.exp index a715c5bd0d..1e876e331a 100644 --- a/gdb/testsuite/gdb.base/infcall-nested-structs-c.exp +++ b/gdb/testsuite/gdb.base/infcall-nested-structs-c.exp @@ -17,4 +17,4 @@ set lang {c} -source $srcdir/$subdir/infcall-nested-structs.exp.in +source $srcdir/$subdir/infcall-nested-structs.exp.tcl diff --git a/gdb/testsuite/gdb.base/infcall-nested-structs.exp.in b/gdb/testsuite/gdb.base/infcall-nested-structs.exp.tcl similarity index 100% rename from gdb/testsuite/gdb.base/infcall-nested-structs.exp.in rename to gdb/testsuite/gdb.base/infcall-nested-structs.exp.tcl diff --git a/gdb/testsuite/gdb.base/info-types-c++.exp b/gdb/testsuite/gdb.base/info-types-c++.exp index 4f44369fe9..587a39f55f 100644 --- a/gdb/testsuite/gdb.base/info-types-c++.exp +++ b/gdb/testsuite/gdb.base/info-types-c++.exp @@ -19,4 +19,4 @@ if { [skip_cplus_tests] || [get_compiler_info "c++"] } { } set lang c++ -source $srcdir/$subdir/info-types.exp.in +source $srcdir/$subdir/info-types.exp.tcl diff --git a/gdb/testsuite/gdb.base/info-types-c.exp b/gdb/testsuite/gdb.base/info-types-c.exp index 800d6389a4..0b6e81d5b2 100644 --- a/gdb/testsuite/gdb.base/info-types-c.exp +++ b/gdb/testsuite/gdb.base/info-types-c.exp @@ -15,4 +15,4 @@ set lang {c} -source $srcdir/$subdir/info-types.exp.in +source $srcdir/$subdir/info-types.exp.tcl diff --git a/gdb/testsuite/gdb.base/info-types.exp.in b/gdb/testsuite/gdb.base/info-types.exp.tcl similarity index 100% rename from gdb/testsuite/gdb.base/info-types.exp.in rename to gdb/testsuite/gdb.base/info-types.exp.tcl diff --git a/gdb/testsuite/gdb.base/max-depth-c++.exp b/gdb/testsuite/gdb.base/max-depth-c++.exp index b88b2c118d..9f732d004f 100644 --- a/gdb/testsuite/gdb.base/max-depth-c++.exp +++ b/gdb/testsuite/gdb.base/max-depth-c++.exp @@ -19,4 +19,4 @@ if { [skip_cplus_tests] || [get_compiler_info "c++"] } { } set lang c++ -source $srcdir/$subdir/max-depth.exp.in +source $srcdir/$subdir/max-depth.exp.tcl diff --git a/gdb/testsuite/gdb.base/max-depth-c.exp b/gdb/testsuite/gdb.base/max-depth-c.exp index 3bd93098d2..765772087d 100644 --- a/gdb/testsuite/gdb.base/max-depth-c.exp +++ b/gdb/testsuite/gdb.base/max-depth-c.exp @@ -15,4 +15,4 @@ set lang {c} -source $srcdir/$subdir/max-depth.exp.in +source $srcdir/$subdir/max-depth.exp.tcl diff --git a/gdb/testsuite/gdb.base/max-depth.exp.in b/gdb/testsuite/gdb.base/max-depth.exp.tcl similarity index 100% rename from gdb/testsuite/gdb.base/max-depth.exp.in rename to gdb/testsuite/gdb.base/max-depth.exp.tcl diff --git a/gdb/testsuite/gdb.cp/cpexprs-debug-types.exp b/gdb/testsuite/gdb.cp/cpexprs-debug-types.exp index b93f2e8c15..ece7bc9acd 100644 --- a/gdb/testsuite/gdb.cp/cpexprs-debug-types.exp +++ b/gdb/testsuite/gdb.cp/cpexprs-debug-types.exp @@ -17,4 +17,4 @@ # Run cpexprs.exp with -fdebug-types-section. set flags {additional_flags=-fdebug-types-section} -source $srcdir/$subdir/cpexprs.exp.in +source $srcdir/$subdir/cpexprs.exp.tcl diff --git a/gdb/testsuite/gdb.cp/cpexprs.exp b/gdb/testsuite/gdb.cp/cpexprs.exp index b16a5ea6e3..62f13a38e8 100644 --- a/gdb/testsuite/gdb.cp/cpexprs.exp +++ b/gdb/testsuite/gdb.cp/cpexprs.exp @@ -21,4 +21,4 @@ # Run cpexprs.exp. set flags {} -source $srcdir/$subdir/cpexprs.exp.in +source $srcdir/$subdir/cpexprs.exp.tcl diff --git a/gdb/testsuite/gdb.cp/cpexprs.exp.in b/gdb/testsuite/gdb.cp/cpexprs.exp.tcl similarity index 100% rename from gdb/testsuite/gdb.cp/cpexprs.exp.in rename to gdb/testsuite/gdb.cp/cpexprs.exp.tcl diff --git a/gdb/testsuite/gdb.cp/infcall-nodebug-c++-d0.exp b/gdb/testsuite/gdb.cp/infcall-nodebug-c++-d0.exp index f06ab08628..806d03b0e2 100644 --- a/gdb/testsuite/gdb.cp/infcall-nodebug-c++-d0.exp +++ b/gdb/testsuite/gdb.cp/infcall-nodebug-c++-d0.exp @@ -22,4 +22,4 @@ set lang {c++} set debug nodebug -source $srcdir/$subdir/infcall-nodebug.exp.in +source $srcdir/$subdir/infcall-nodebug.exp.tcl diff --git a/gdb/testsuite/gdb.cp/infcall-nodebug-c++-d1.exp b/gdb/testsuite/gdb.cp/infcall-nodebug-c++-d1.exp index d9dd14faf9..dfafe52afb 100644 --- a/gdb/testsuite/gdb.cp/infcall-nodebug-c++-d1.exp +++ b/gdb/testsuite/gdb.cp/infcall-nodebug-c++-d1.exp @@ -22,4 +22,4 @@ set lang {c++} set debug debug -source $srcdir/$subdir/infcall-nodebug.exp.in +source $srcdir/$subdir/infcall-nodebug.exp.tcl diff --git a/gdb/testsuite/gdb.cp/infcall-nodebug-c-d0.exp b/gdb/testsuite/gdb.cp/infcall-nodebug-c-d0.exp index cd65dd036a..b74f9333f8 100644 --- a/gdb/testsuite/gdb.cp/infcall-nodebug-c-d0.exp +++ b/gdb/testsuite/gdb.cp/infcall-nodebug-c-d0.exp @@ -18,4 +18,4 @@ set lang {c} set debug nodebug -source $srcdir/$subdir/infcall-nodebug.exp.in +source $srcdir/$subdir/infcall-nodebug.exp.tcl diff --git a/gdb/testsuite/gdb.cp/infcall-nodebug-c-d1.exp b/gdb/testsuite/gdb.cp/infcall-nodebug-c-d1.exp index 4cb26ad3fd..b9d68637ae 100644 --- a/gdb/testsuite/gdb.cp/infcall-nodebug-c-d1.exp +++ b/gdb/testsuite/gdb.cp/infcall-nodebug-c-d1.exp @@ -18,4 +18,4 @@ set lang {c} set debug debug -source $srcdir/$subdir/infcall-nodebug.exp.in +source $srcdir/$subdir/infcall-nodebug.exp.tcl diff --git a/gdb/testsuite/gdb.cp/infcall-nodebug.exp.in b/gdb/testsuite/gdb.cp/infcall-nodebug.exp.tcl similarity index 100% rename from gdb/testsuite/gdb.cp/infcall-nodebug.exp.in rename to gdb/testsuite/gdb.cp/infcall-nodebug.exp.tcl diff --git a/gdb/testsuite/gdb.dwarf2/clang-debug-names-2.exp b/gdb/testsuite/gdb.dwarf2/clang-debug-names-2.exp index 185dddfc73..43d7801c0d 100644 --- a/gdb/testsuite/gdb.dwarf2/clang-debug-names-2.exp +++ b/gdb/testsuite/gdb.dwarf2/clang-debug-names-2.exp @@ -29,7 +29,7 @@ lassign \ main_start main_length set asm_file [standard_output_file $srcfile2] -source $srcdir/$subdir/clang-debug-names.exp.in +source $srcdir/$subdir/clang-debug-names.exp.tcl if { [build_executable_from_specs "failed to prepare" ${testfile} "" \ $srcfile "nodebug" $asm_file "nodebug" $srcfile3 "debug"] } { diff --git a/gdb/testsuite/gdb.dwarf2/clang-debug-names.exp b/gdb/testsuite/gdb.dwarf2/clang-debug-names.exp index b5af898838..149c1263c9 100644 --- a/gdb/testsuite/gdb.dwarf2/clang-debug-names.exp +++ b/gdb/testsuite/gdb.dwarf2/clang-debug-names.exp @@ -26,7 +26,7 @@ lassign [function_range main ${srcdir}/${subdir}/${srcfile}] \ main_start main_length set asm_file [standard_output_file $srcfile2] -source $srcdir/$subdir/clang-debug-names.exp.in +source $srcdir/$subdir/clang-debug-names.exp.tcl if { [prepare_for_testing "failed to prepare" ${testfile} \ [list $srcfile $asm_file] {nodebug}] } { diff --git a/gdb/testsuite/gdb.dwarf2/clang-debug-names.exp.in b/gdb/testsuite/gdb.dwarf2/clang-debug-names.exp.tcl similarity index 100% rename from gdb/testsuite/gdb.dwarf2/clang-debug-names.exp.in rename to gdb/testsuite/gdb.dwarf2/clang-debug-names.exp.tcl -- 2.34.1