gdb/testsuite/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Wed, 12 Oct 2011 09:19:42 +0000 (09:19 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Wed, 12 Oct 2011 09:19:42 +0000 (09:19 +0000)
* gdb.cp/namespace-enum.exp (executable): New variable.
(binfile): Use ${objdir}/${subdir}/ prefix.
Use ${executable} for clean_restart.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.cp/namespace-enum.exp

index a39c76e472b94a7add65614169ee07d7910569aa..285f8424e521ee906c1a194e8255b247b15a8352 100644 (file)
@@ -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.
index a8b26ec9cf313c47ba7099566085a8a65738700e..f1d4ff14b928f9b391af582871aabf18c711063b 100644 (file)
@@ -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"