* gdb.python/py-value-cc.cc: Renamed from py-value.cc.
authorDoug Evans <dje@google.com>
Wed, 7 Aug 2013 23:51:45 +0000 (23:51 +0000)
committerDoug Evans <dje@google.com>
Wed, 7 Aug 2013 23:51:45 +0000 (23:51 +0000)
* gdb.python/py-value-cc.exp: Update.
* gdb.python/py-value.exp: Use different names for .o files for
C and C++.  Only perform C++ tests if !skip_cplus_tests.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.python/py-value-cc.cc [new file with mode: 0644]
gdb/testsuite/gdb.python/py-value-cc.exp
gdb/testsuite/gdb.python/py-value.cc [deleted file]
gdb/testsuite/gdb.python/py-value.exp

index fb21761fe7f3238b63e2c77e5b4cefe40d5d487d..5f38aa00ef0748318480ce7c24bd45a51c2c7a9f 100644 (file)
@@ -1,3 +1,10 @@
+2013-08-07  Doug Evans  <dje@google.com>
+
+       * gdb.python/py-value-cc.cc: Renamed from py-value.cc.
+       * gdb.python/py-value-cc.exp: Update.
+       * gdb.python/py-value.exp: Use different names for .o files for
+       C and C++.  Only perform C++ tests if !skip_cplus_tests.
+
 2013-08-07  Tom Tromey  <tromey@redhat.com>
 
        * gdb.base/maint.exp: Allow zero symtabs to be expanded.
diff --git a/gdb/testsuite/gdb.python/py-value-cc.cc b/gdb/testsuite/gdb.python/py-value-cc.cc
new file mode 100644 (file)
index 0000000..c010fc9
--- /dev/null
@@ -0,0 +1,39 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+   Copyright 2012-2013 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/>.  */
+
+class A {
+};
+
+typedef int *int_ptr;
+
+int
+func (const A &a)
+{
+  int val = 10;
+  int &int_ref = val;
+  int_ptr ptr = &val;
+  int_ptr &int_ptr_ref = ptr;
+
+  return 0; /* Break here.  */
+}
+
+int
+main ()
+{
+  A obj;
+  return func (obj);
+}
index 914dbaa7b3670ddad4b87907d51ee6765d4e6646..55c3b970cc4fc52de3ded518b3e9d0426b07739f 100644 (file)
@@ -18,7 +18,7 @@
 
 if { [skip_cplus_tests] } { continue }
 
-standard_testfile py-value.cc
+standard_testfile .cc
 
 if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}]} {
     return -1
diff --git a/gdb/testsuite/gdb.python/py-value.cc b/gdb/testsuite/gdb.python/py-value.cc
deleted file mode 100644 (file)
index c010fc9..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* This testcase is part of GDB, the GNU debugger.
-
-   Copyright 2012-2013 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/>.  */
-
-class A {
-};
-
-typedef int *int_ptr;
-
-int
-func (const A &a)
-{
-  int val = 10;
-  int &int_ref = val;
-  int_ptr ptr = &val;
-  int_ptr &int_ptr_ref = ptr;
-
-  return 0; /* Break here.  */
-}
-
-int
-main ()
-{
-  A obj;
-  return func (obj);
-}
index 9142c729927ff412797373fd698da791a33aa3ef..4f863a6c91b350d08c8bea678452d744f67eb899 100644 (file)
@@ -21,13 +21,26 @@ load_lib gdb-python.exp
 standard_testfile
 
 # Build inferior to language specification.
+# LANG is one of "c" or "c++".
 proc build_inferior {exefile lang} {
   global srcdir subdir srcfile testfile hex
 
-  if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${exefile}" executable "debug $lang"] != "" } {
+  # Use different names for .o files based on the language.
+  # For Fission, the debug info goes in foo.dwo and we don't want,
+  # for example, a C++ compile to clobber the dwo of a C compile.
+  # ref: http://gcc.gnu.org/wiki/DebugFission
+  switch ${lang} {
+      "c" { set filename ${testfile}.o }
+      "c++" { set filename ${testfile}-cxx.o }
+  }
+  set objfile [standard_output_file $filename]
+
+  if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objfile}" object "debug $lang"] != ""
+       || [gdb_compile "${objfile}" "${exefile}" executable "debug $lang"] != "" } {
       untested "Couldn't compile ${srcfile} in $lang mode"
       return -1
   }
+  return 0
 }
 
 proc test_value_creation {} {
@@ -463,9 +476,10 @@ proc test_value_hash {} {
     gdb_test "python print (one.__hash__() == hash(one))" "True" "Test inbuilt hash"
 }
 
-# Build C and C++ versions of executable
-build_inferior "${binfile}" "c"
-build_inferior "${binfile}-cxx" "c++"
+# Build C version of executable.  C++ is built later.
+if { [build_inferior "${binfile}" "c"] < 0 } {
+    return -1
+}
 
 # Start with a fresh gdb.
 clean_restart ${binfile}
@@ -494,5 +508,12 @@ test_lazy_strings
 test_value_after_death
 
 # Test either C or C++ values. 
+
 test_subscript_regression "${binfile}" "c"
-test_subscript_regression "${binfile}-cxx" "c++"
+
+if ![skip_cplus_tests] {
+    if { [build_inferior "${binfile}-cxx" "c++"] < 0 } {
+       return -1
+    }
+    test_subscript_regression "${binfile}-cxx" "c++"
+}