aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2011-10-12 09:19:42 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2011-10-12 09:19:42 +0000
commit9ec72168368110c0ca99f41aacb30a7744379ab5 (patch)
treeacbab94ce5367e37b5d85c98661f2c5b733d92db /gdb
parent00ce9deb436f0546db143c24c05964f68e2fa7c1 (diff)
downloadgdb-9ec72168368110c0ca99f41aacb30a7744379ab5.zip
gdb-9ec72168368110c0ca99f41aacb30a7744379ab5.tar.gz
gdb-9ec72168368110c0ca99f41aacb30a7744379ab5.tar.bz2
gdb/testsuite/
* gdb.cp/namespace-enum.exp (executable): New variable. (binfile): Use ${objdir}/${subdir}/ prefix. Use ${executable} for clean_restart.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog6
-rw-r--r--gdb/testsuite/gdb.cp/namespace-enum.exp5
2 files changed, 9 insertions, 2 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index a39c76e..285f842 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2011-10-12 Jan Kratochvil <jan.kratochvil@redhat.com>
+
+ * gdb.cp/namespace-enum.exp (executable): New variable.
+ (binfile): Use ${objdir}/${subdir}/ prefix.
+ Use ${executable} for clean_restart.
+
2011-10-11 Sterling Augustine <saugustine@google.com>
* gdb.cp/Makefile.in: Add namespace-enum test.
diff --git a/gdb/testsuite/gdb.cp/namespace-enum.exp b/gdb/testsuite/gdb.cp/namespace-enum.exp
index a8b26ec..f1d4ff1 100644
--- a/gdb/testsuite/gdb.cp/namespace-enum.exp
+++ b/gdb/testsuite/gdb.cp/namespace-enum.exp
@@ -18,7 +18,8 @@ set srcfile0 ${testfile}.cc
set objfile0 ${testfile}.o
set srcfile1 ${testfile}-main.cc
set objfile1 ${testfile}-main.o
-set binfile ${testfile}
+set executable ${testfile}
+set binfile ${objdir}/${subdir}/${executable}
if { [gdb_compile "$srcdir/$subdir/$srcfile0" "$objdir/$subdir/$objfile0" object {debug c++}] != "" } {
untested namespace-enum.exp
@@ -35,7 +36,7 @@ if { [gdb_compile "$objdir/$subdir/$objfile0 $objdir/$subdir/$objfile1" "${binf
return -1
}
-clean_restart ${binfile}
+clean_restart ${executable}
gdb_test "print foo::B::B_B" "`foo::B' is not defined as an aggregate type."
gdb_test "print foo::B_B" "foo::B_B"
gdb_test "print A_A" "A_A"