gdb: rename gdb/testsuite/gdb.arch/riscv64-unwind-prologue-with-ld-lw.c
authorLancelot SIX <lsix@lancelotsix.com>
Thu, 12 Aug 2021 23:29:08 +0000 (23:29 +0000)
committerLancelot SIX <lsix@lancelotsix.com>
Mon, 6 Sep 2021 18:29:39 +0000 (18:29 +0000)
A previous commit added the
gdb.arch/riscv64-unwind-prologue-with-ld-lw.exp testcase, but one of its
associated file was named after a previous version of the test.

This commit fixes this and makes sure that all the files linked to this
testcase share the same prefix in the name.

Tested on riscv64 GNU/Linux.

gdb/testsuite/gdb.arch/riscv64-unwind-prologue-with-ld-lw.c [new file with mode: 0644]
gdb/testsuite/gdb.arch/riscv64-unwind-prologue-with-ld-lw.exp
gdb/testsuite/gdb.arch/riscv64-unwind-prologue-with-ld.c [deleted file]

diff --git a/gdb/testsuite/gdb.arch/riscv64-unwind-prologue-with-ld-lw.c b/gdb/testsuite/gdb.arch/riscv64-unwind-prologue-with-ld-lw.c
new file mode 100644 (file)
index 0000000..9ff950d
--- /dev/null
@@ -0,0 +1,30 @@
+/* Copyright 2021 Free Software Foundation, Inc.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+/* See riscv64-unwind-prologue-with-ld-foo.s for implementation.  */
+extern int foo (void);
+
+int
+bar ()
+{
+  return 0;
+}
+
+int
+main ()
+{
+  return foo ();
+}
+
index c329d2f72e0936c34426914c79cb70df45bd6e22..f559c3ff4bc08f6d6140bc1e2784fc0b8fbda4b0 100644 (file)
@@ -21,7 +21,7 @@ if {![istarget "riscv64-*-*"]} {
     return
 }
 
-standard_testfile riscv64-unwind-prologue-with-ld.c \
+standard_testfile riscv64-unwind-prologue-with-ld-lw.c \
                  riscv64-unwind-prologue-with-ld-lw-foo.s
 if {[prepare_for_testing "failed to prepare" $testfile \
                         "$srcfile $srcfile2"  nodebug]} {
diff --git a/gdb/testsuite/gdb.arch/riscv64-unwind-prologue-with-ld.c b/gdb/testsuite/gdb.arch/riscv64-unwind-prologue-with-ld.c
deleted file mode 100644 (file)
index 9ff950d..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Copyright 2021 Free Software Foundation, Inc.
-
-   This program is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 3 of the License, or
-   (at your option) any later version.
-
-   This program is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
-
-/* See riscv64-unwind-prologue-with-ld-foo.s for implementation.  */
-extern int foo (void);
-
-int
-bar ()
-{
-  return 0;
-}
-
-int
-main ()
-{
-  return foo ();
-}
-