[1/2] new-ui.exp: Use proc_with_prefix

Message ID 20170210210232.17439-1-simon.marchi@ericsson.com
State New, archived
Headers

Commit Message

Simon Marchi Feb. 10, 2017, 9:02 p.m. UTC
  gdb/testsuite/ChangeLog:

	* gdb.base/new-ui.exp (do_test, do_test_invalid_args): Use
	proc_with_prefix.
---
 gdb/testsuite/gdb.base/new-ui.exp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
  

Comments

Pedro Alves Feb. 10, 2017, 9:07 p.m. UTC | #1
On 02/10/2017 09:02 PM, Simon Marchi wrote:
> gdb/testsuite/ChangeLog:
> 
> 	* gdb.base/new-ui.exp (do_test, do_test_invalid_args): Use
> 	proc_with_prefix.

OK.

Thanks,
Pedro Alves
  

Patch

diff --git a/gdb/testsuite/gdb.base/new-ui.exp b/gdb/testsuite/gdb.base/new-ui.exp
index 40bcc4b08b..8224b7d615 100644
--- a/gdb/testsuite/gdb.base/new-ui.exp
+++ b/gdb/testsuite/gdb.base/new-ui.exp
@@ -73,7 +73,7 @@  proc do_execution_tests {con1 con1_name con2 con2_name} {
 
 # The test proper.
 
-proc do_test {} {
+proc_with_prefix do_test {} {
     global srcfile testfile
     global gdb_prompt
     global gdb_spawn_id
@@ -145,7 +145,7 @@  proc do_test {} {
 
 # Test missing / invalid arguments.
 
-proc do_test_invalid_args {} {
+proc_with_prefix do_test_invalid_args {} {
     global testfile
 
     clean_restart $testfile
@@ -169,5 +169,5 @@  proc do_test_invalid_args {} {
     }
 }
 
-with_test_prefix "do_test" do_test
-with_test_prefix "do_test_invalid_args" do_test_invalid_args
+do_test
+do_test_invalid_args