| Index: gdb/testsuite/gdb.cp/cpcompletion.exp
|
| diff --git a/gdb/testsuite/gdb.cp/cpcompletion.exp b/gdb/testsuite/gdb.cp/cpcompletion.exp
|
| index 48dcca14bcdf57b63d84a8ccbcfbc3fd4813eb39..dba9c100601c41a78a1505892bbfeb304046b95e 100644
|
| --- a/gdb/testsuite/gdb.cp/cpcompletion.exp
|
| +++ b/gdb/testsuite/gdb.cp/cpcompletion.exp
|
| @@ -49,31 +49,14 @@ proc test_class_complete {class expr name matches} {
|
| }
|
| }
|
|
|
| -if $tracelevel then {
|
| - strace $tracelevel
|
| -}
|
| -
|
| if { [skip_cplus_tests] } { continue }
|
|
|
| -set testfile pr9594
|
| -set binfile ${objdir}/${subdir}/${testfile}
|
| +standard_testfile pr9594.cc
|
|
|
| -if {[gdb_compile "${srcdir}/${subdir}/${testfile}.cc" "${testfile}.o" object {c++ debug}] != ""} {
|
| - untested cpcompletion.exp
|
| +if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}]} {
|
| return -1
|
| }
|
|
|
| -if {[gdb_compile "${testfile}.o" ${binfile} executable {c++ debug}] != "" } {
|
| - untested cpcompletion.exp
|
| - return -1
|
| -}
|
| -
|
| -gdb_exit
|
| -
|
| -gdb_start
|
| -gdb_reinitialize_dir $srcdir/$subdir
|
| -gdb_load ${binfile}
|
| -
|
| # Test that completion is restricted by class name (all methods)
|
| test_class_complete Foo "" "complete class methods" \
|
| [list Foo Foofoo get_foo set_foo ~Foo]
|
| @@ -83,9 +66,9 @@ test_class_complete Foo F "complete class methods beginning with F" \
|
|
|
| # The tests below depend on the current code scope.
|
|
|
| -set bp_location [gdb_get_line_number "Set breakpoint here" ${testfile}.cc]
|
| +set bp_location [gdb_get_line_number "Set breakpoint here" ${srcfile}]
|
|
|
| -if {![runto "${testfile}.cc:$bp_location"]} {
|
| +if {![runto "${srcfile}:$bp_location"]} {
|
| perror "test suppressed"
|
| return
|
| }
|
|
|