gdb/testsuite: remove use of then keyword from gdb.multi/*.exp
authorAndrew Burgess <aburgess@redhat.com>
Mon, 14 Nov 2022 14:28:22 +0000 (14:28 +0000)
committerAndrew Burgess <aburgess@redhat.com>
Mon, 28 Nov 2022 21:04:09 +0000 (21:04 +0000)
The canonical form of 'if' in modern TCL is 'if {} {}'.  But there's
still a bunch of places in the testsuite where we make use of the
'then' keyword, and sometimes these get copies into new tests, which
just spreads poor practice.

This commit removes all use of the 'then' keyword from the gdb.multi/
test script directory.

There should be no changes in what is tested after this commit.

gdb/testsuite/gdb.multi/base.exp
gdb/testsuite/gdb.multi/bkpt-multi-exec.exp
gdb/testsuite/gdb.multi/dummy-frame-restore.exp
gdb/testsuite/gdb.multi/info-threads.exp
gdb/testsuite/gdb.multi/multi-arch-exec.exp
gdb/testsuite/gdb.multi/multi-arch.exp
gdb/testsuite/gdb.multi/multi-re-run.exp
gdb/testsuite/gdb.multi/tids-gid-reset.exp
gdb/testsuite/gdb.multi/tids.exp

index 7f291996ef4ca94a7a92a7a6d4ffcbc69160f2a5..6c5042eb40433354c42ffcbeb40b5661d8beb39e 100644 (file)
@@ -85,7 +85,7 @@ gdb_test_multiple "info inferior 2 3" "info inferior 2 3" {
        exp_continue
     }
     -re "$gdb_prompt $" {
-       if { !$see1 && $see2 && $see3 } then {
+       if {!$see1 && $see2 && $see3} {
            pass "info inferior 2 3"
        } else {
            fail "info inferior 2 3"
@@ -111,7 +111,7 @@ gdb_test_multiple "info inferior 1-2" "info inferior 1-2" {
        exp_continue
     }
     -re "$gdb_prompt $" {
-       if { $see1 && $see2 && !$see3 } then {
+       if {$see1 && $see2 && !$see3} {
            pass "info inferior 1-2"
        } else {
            fail "info inferior 1-2"
@@ -154,7 +154,7 @@ gdb_test "list commonfun" "from goodbye.*" "list commonfun in goodbye"
 # Let's run the hello program.
 gdb_test "inferior 1" ".*" "switch to inferior 1 to run it"
 
-if { ![runto_main] } then {
+if {![runto_main]} {
     return -1
 }
 
@@ -183,7 +183,7 @@ gdb_test_multiple "info inferiors" "check remove-inferiors" {
        exp_continue
     }
     -re "$gdb_prompt $" {
-       if { $see1 && !$see2 && !$see3 } then {
+       if {$see1 && !$see2 && !$see3} {
            pass "check remove-inferiors"
        } else {
            fail "check remove-inferiors"
index cf7101bd5f40db08bc79e2e21d4226725b3f60d9..43700016b4ef8eca8bdcc36cc5bb43efcefb2b5a 100644 (file)
@@ -19,7 +19,7 @@ if ![target_can_use_run_cmd] {
 
 # Until "catch exec" is implemented on other targets...
 #
-if {![istarget "*-linux*"]} then {
+if {![istarget "*-linux*"]} {
     return
 }
 
@@ -49,7 +49,7 @@ clean_restart ${exec1}
 
 # Start the program running, and stop at main.
 #
-if ![runto_main] then {
+if {![runto_main]} {
     return
 }
 
index 5accd7d4bd719947408c5ae6c7dfbca6e1b6517f..0cd1cf5a4142b8b63fb1adfd01e621df3a68c136 100644 (file)
@@ -27,7 +27,7 @@ if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug}]} {
 
 # Inferior 1 stops at f1.
 
-if ![runto f1] then {
+if {![runto f1]} {
     return 0
 }
 
@@ -40,7 +40,7 @@ delete_breakpoints
 
 # Inferior 2 stops at f2.
 
-if ![runto f2] then {
+if {![runto f2]} {
     return 0
 }
 
index 5a4d611d62862430d2712b32952f030075e66dfe..650e7c6194f63ed8f9375c39b185ab20c1bd839b 100644 (file)
@@ -24,7 +24,7 @@ if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} {pthreads d
     return -1
 }
 
-if { ![runto_main] } then {
+if {![runto_main]} {
     return -1
 }
 
index 3d77960988d9836910c87719f21caf940a2dfaf4..7899c22355323874f2bdae34e53b8d22fa4fb867 100644 (file)
@@ -152,7 +152,7 @@ proc do_test { first_arch mode selected_thread } {
        set from_exec "$first_arch-multi-arch-exec"
 
        clean_restart ${from_exec}
-       if ![runto all_started] then {
+       if {![runto all_started]} {
            return -1
        }
 
index b564e6caf25f06478fd7ac4f96191d5d8ed19f1f..a15b0217a9e800640bf28450db49ccae1ebc6e3f 100644 (file)
@@ -78,7 +78,7 @@ if { [build_executable "failed to prepare" ${exec2} "${srcfile2}" \
 # Start inferior 1
 
 clean_restart ${exec1}
-if ![runto_main] then {
+if {![runto_main]} {
     return
 }
 
@@ -88,7 +88,7 @@ gdb_test "add-inferior" "Added inferior 2.*" "add empty inferior 2"
 gdb_test "inferior 2" "Switching to inferior 2.*" "switch to inferior 2"
 gdb_load ${binfile2}
 
-if ![runto_main] then {
+if {![runto_main]} {
     return
 }
 
index 5af4fde4baf9582d8db87c77d2ac45e6a1ca590f..04073c94545731f5cf40325a4889e3ca3ad11035 100644 (file)
@@ -80,7 +80,7 @@ proc test_re_run {re_run_inf} {
 
     # Run the steady inferior to a breakpoint, and let it stay stopped
     # there.
-    if ![runto all_started] then {
+    if {![runto all_started]} {
        return 0
     }
 
index 6cab573a1f83a4aeaf2598ffdc884aaa4237a02f..27474b19e36de6ed0b9ceba059eb96107acaea5b 100644 (file)
@@ -31,7 +31,7 @@ with_test_prefix "single-inferior" {
     with_test_prefix "before restart" {
        clean_restart ${testfile}
 
-       if { ![runto_main] } then {
+       if {![runto_main]} {
            return -1
        }
 
@@ -40,7 +40,7 @@ with_test_prefix "single-inferior" {
 
     with_test_prefix "restart" {
        gdb_continue_to_end
-       if { ![runto_main] } then {
+       if {![runto_main]} {
            return -1
        }
     }
@@ -66,7 +66,7 @@ with_test_prefix "multi-inferior" {
     gdb_test "inferior 2" "Switching to inferior 2 .*" "switch to inferior 2"
     gdb_load ${binfile}
 
-    if ![runto_main] then {
+    if {![runto_main]} {
        return
     }
 
@@ -82,7 +82,7 @@ with_test_prefix "multi-inferior" {
 
     with_test_prefix "restart" {
        gdb_continue_to_end
-       if { ![runto_main] } then {
+       if {![runto_main]} {
            return -1
        }
     }
index 23668caf18f2a22cb673de65ddb8b0bbe0e34028..44face83860189a4780265df1caf8b82c5f679c1 100644 (file)
@@ -31,7 +31,7 @@ if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} {pthreads d
     return -1
 }
 
-if { ![runto_main] } then {
+if {![runto_main]} {
     return -1
 }