gdb/testsuite: rename test source file to match test script
authorAndrew Burgess <aburgess@redhat.com>
Thu, 12 Jan 2023 13:24:40 +0000 (13:24 +0000)
committerAndrew Burgess <aburgess@redhat.com>
Wed, 25 Jan 2023 10:01:49 +0000 (10:01 +0000)
The previous commit touched the source file for the test script
gdb.cp/cpcompletion.exp.  This source file is called pr9594.cc.  The
source file is only used by the one test script.

This commit renames the source file to cpcompletion.cc to match the
test script, this is more inline with how we name source files these
days.

gdb/testsuite/gdb.cp/cpcompletion.cc [new file with mode: 0644]
gdb/testsuite/gdb.cp/cpcompletion.exp
gdb/testsuite/gdb.cp/pr9594.cc [deleted file]

diff --git a/gdb/testsuite/gdb.cp/cpcompletion.cc b/gdb/testsuite/gdb.cp/cpcompletion.cc
new file mode 100644 (file)
index 0000000..54ddaaf
--- /dev/null
@@ -0,0 +1,65 @@
+
+class Base
+{
+public:
+  virtual int get_foo () { return 1; }
+  int base_function_only () { return 2; }
+};
+
+class Foo : public Base
+{
+
+private:
+  int foo_value;
+
+public:
+  Foo () { foo_value = 0;}
+  Foo (int i) { foo_value = i;}
+  ~Foo () { }
+  void set_foo (int value);
+  int get_foo ();
+
+  // Something similar to a constructor name.
+  void Foofoo ();
+
+  bool operator== (const Foo &other) { return foo_value == other.foo_value; }
+};
+void Foo::set_foo (int value)
+{
+  foo_value = value;
+}
+
+int Foo::get_foo ()
+{
+  return foo_value;
+}
+
+void Foo::Foofoo ()
+{
+}
+
+namespace Test_NS {
+
+int foo;
+int bar;
+
+namespace Nested {
+
+int qux;
+
+} /* namespace Nested */
+
+} /* namespace Test_NS */
+
+int main ()
+{
+  // Anonymous struct with method.
+  struct {
+    int get() { return 5; }
+  } a;
+  Foo foo1;
+  foo1.set_foo (42);           // Set breakpoint here.
+  a.get();                     // Prevent compiler from throwing 'a' away.
+  return 0;
+}
index d69aac6f79f8a43512d827dde958a4a7c96a527b..8c5c90b935710c0556b7c42d25c875bae2e1d224 100644 (file)
@@ -53,7 +53,7 @@ proc test_class_complete {class expr name matches} {
 
 require allow_cplus_tests
 
-standard_testfile pr9594.cc
+standard_testfile .cc
 
 if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug c++}]} {
     return -1
diff --git a/gdb/testsuite/gdb.cp/pr9594.cc b/gdb/testsuite/gdb.cp/pr9594.cc
deleted file mode 100644 (file)
index 54ddaaf..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-
-class Base
-{
-public:
-  virtual int get_foo () { return 1; }
-  int base_function_only () { return 2; }
-};
-
-class Foo : public Base
-{
-
-private:
-  int foo_value;
-
-public:
-  Foo () { foo_value = 0;}
-  Foo (int i) { foo_value = i;}
-  ~Foo () { }
-  void set_foo (int value);
-  int get_foo ();
-
-  // Something similar to a constructor name.
-  void Foofoo ();
-
-  bool operator== (const Foo &other) { return foo_value == other.foo_value; }
-};
-void Foo::set_foo (int value)
-{
-  foo_value = value;
-}
-
-int Foo::get_foo ()
-{
-  return foo_value;
-}
-
-void Foo::Foofoo ()
-{
-}
-
-namespace Test_NS {
-
-int foo;
-int bar;
-
-namespace Nested {
-
-int qux;
-
-} /* namespace Nested */
-
-} /* namespace Test_NS */
-
-int main ()
-{
-  // Anonymous struct with method.
-  struct {
-    int get() { return 5; }
-  } a;
-  Foo foo1;
-  foo1.set_foo (42);           // Set breakpoint here.
-  a.get();                     // Prevent compiler from throwing 'a' away.
-  return 0;
-}