[gdb/testsuite] Fix wrong return type in tests
authorThomas Preud'homme <thomas.preudhomme@arm.com>
Wed, 29 Nov 2017 10:45:31 +0000 (10:45 +0000)
committerThomas Preud'homme <thomas.preudhomme@arm.com>
Wed, 29 Nov 2017 10:45:31 +0000 (10:45 +0000)
The following tests are marked untested with latest GCC due to a warning
being emitted for a mismatch between their return type and what the lack
of return statement:

* gdb.cp/breakpoint.exp
* gdb.cp/psymtab-parameter.exp
* gdb.cp/shadow.exp

This patch fix the return type to match the function definitions.

2017-11-29  Thomas Preud'homme  <thomas.preudhomme@arm.com>

gdb/testsuite/
* gdb.cp/breakpoint.cc (bar): Set return type to void.
* gdb.cp/psymtab-parameter.cc (func): Likewise.
* gdb.cp/psymtab-parameter.exp: Update comment regarding prototype of
func ().
* gdb.cp/shadow.cc (B.func): Return 0.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.cp/breakpoint.cc
gdb/testsuite/gdb.cp/psymtab-parameter.cc
gdb/testsuite/gdb.cp/psymtab-parameter.exp
gdb/testsuite/gdb.cp/shadow.cc

index 16c93dca78cdade9ccaa2e6c7a1d670b2b5594e5..23d3cc2783b59c3ef82da065b8c781b7632ad160 100644 (file)
@@ -1,3 +1,11 @@
+2017-11-29  Thomas Preud'homme  <thomas.preudhomme@arm.com>
+
+       * gdb.cp/breakpoint.cc (bar): Set return type to void.
+       * gdb.cp/psymtab-parameter.cc (func): Likewise.
+       * gdb.cp/psymtab-parameter.exp: Update comment regarding prototype of
+       func ().
+       * gdb.cp/shadow.cc (B.func): Return 0.
+
 2017-11-27  Joel Brobecker  <brobecker@adacore.com>
 
        * gdb.ada/mi_catch_ex.exp (continue_to_exception): Adjust
index fc9b9d9f3e55813ac549ec06d4bdb393e1a93809..1feff44cd38cdc385abd2c4ea3c9dcf8b57c4861 100644 (file)
@@ -28,7 +28,7 @@ public:
     return 1; // conditional breakpoint in method
   }
 
-  int bar ()
+  void bar ()
   {
     for (int i = 0; i < 1; ++i)
       {
index 0990430c128413ecc21bcf65ebf58a1899f535fa..9f63fefcaeb800f7444fe74225514d3330036e5b 100644 (file)
@@ -16,7 +16,7 @@
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 template <typename T>
-long
+void
 func ()
 {
 }
index 3d78de91f4b3752d754bd776ae3532700a308a40..5c4b6ac71927fe9030bd9ce66111761425ab433b 100644 (file)
@@ -31,6 +31,6 @@ gdb_test_no_output "set language c++"
 # XFAIL than FAIL here.  For example -readnow breaks it.
 gdb_test_no_output "maintenance info symtabs"
 
-# GDB has shown only the `long func<short>()' ELF symbol before, not the DWARF
+# GDB has shown only the `void func<short>()' ELF symbol before, not the DWARF
 # symbol
 gdb_test "complete p 'func<short>(" "p 'func<short>\\(\\)"
index 0520b2aeb8b6afecd7091cac3e295bec99c485b1..4c9fb12a7bbe95a89c3b7df2cb2782fabeec462a 100644 (file)
@@ -36,6 +36,7 @@ public:
               }
           }
       }
+    return 0;
   }
 };