gdb/testsuite: remove use of then keyword from gdb.reverse/*.exp
authorAndrew Burgess <aburgess@redhat.com>
Mon, 14 Nov 2022 14:20:53 +0000 (14:20 +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.reverse/
test script directory.

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

15 files changed:
gdb/testsuite/gdb.reverse/consecutive-precsave.exp
gdb/testsuite/gdb.reverse/consecutive-reverse.exp
gdb/testsuite/gdb.reverse/finish-reverse-bkpt.exp
gdb/testsuite/gdb.reverse/i386-precsave.exp
gdb/testsuite/gdb.reverse/i386-reverse.exp
gdb/testsuite/gdb.reverse/i386-sse-reverse.exp
gdb/testsuite/gdb.reverse/i387-env-reverse.exp
gdb/testsuite/gdb.reverse/i387-stack-reverse.exp
gdb/testsuite/gdb.reverse/insn-reverse.exp
gdb/testsuite/gdb.reverse/next-reverse-bkpt-over-sr.exp
gdb/testsuite/gdb.reverse/ppc_record_test_isa_2_06.exp
gdb/testsuite/gdb.reverse/ppc_record_test_isa_3_1.exp
gdb/testsuite/gdb.reverse/sigall-precsave.exp
gdb/testsuite/gdb.reverse/sigall-reverse.exp
gdb/testsuite/gdb.reverse/test_ioctl_TCSETSW.exp

index 5d2c8105a1fb65681caffbacfaebf6f3b5d9a6b4..d1d1aa2b061acf6add1bf6117175acf3768e5f2f 100644 (file)
@@ -83,7 +83,7 @@ set testmsg "stopped at bp, 2nd instr"
 gdb_test_multiple "step" $testmsg {
     -re -wrap "Breakpoint $decimal, ($hex) in foo.*" {
        set stop_addr $expect_out(1,string)
-       if [eval expr "$foo2_addr == $stop_addr"] then {
+       if {[eval expr "$foo2_addr == $stop_addr"]} {
            pass "stopped at bp, 2nd instr"
        } else {
            fail "stopped at bp, 2nd instr (wrong address)"
@@ -94,7 +94,7 @@ gdb_test_multiple "step" $testmsg {
        set stop_addr_is_stmt [hex_in_list $stop_addr $is_stmt]
        if { ! $stop_addr_is_stmt } {
            fail "stopped at bp, 2nd instr (missing hex prefix)"
-       } elseif [eval expr "$foo2_addr == $stop_addr"] then {
+       } elseif {[eval expr "$foo2_addr == $stop_addr"]} {
            pass "stopped at bp, 2nd instr"
        } else {
            fail "stopped at bp, 2nd instr (wrong address)"
@@ -116,7 +116,7 @@ set test_msg "stopped at bp in reverse, 1st instr"
 gdb_test_multiple "step" "$test_msg" {
     -re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" {
        set stop_addr $expect_out(1,string)
-       if [eval expr "$foo1_addr == $stop_addr"] then {
+       if {[eval expr "$foo1_addr == $stop_addr"]} {
            pass "$test_msg"
        } else {
            fail "$test_msg (wrong address)"
index 955cb4903e0bcad972355a2536028ac3cb040249..99d83328febbc56c14e2435609b1a01f6d2255cc 100644 (file)
@@ -63,7 +63,7 @@ set testmsg "stopped at bp, 2nd instr"
 gdb_test_multiple "step" $testmsg {
     -re -wrap "Breakpoint $decimal, ($hex) in foo.*" {
        set stop_addr $expect_out(1,string)
-       if [eval expr "$foo2_addr == $stop_addr"] then {
+       if {[eval expr "$foo2_addr == $stop_addr"]} {
            pass "stopped at bp, 2nd instr"
        } else {
            fail "stopped at bp, 2nd instr (wrong address)"
@@ -74,7 +74,7 @@ gdb_test_multiple "step" $testmsg {
        set stop_addr_is_stmt [hex_in_list $stop_addr $is_stmt]
        if { ! $stop_addr_is_stmt } {
            fail "stopped at bp, 2nd instr (missing hex prefix)"
-       } elseif [eval expr "$foo2_addr == $stop_addr"] then {
+       } elseif {[eval expr "$foo2_addr == $stop_addr"]} {
            pass "stopped at bp, 2nd instr"
        } else {
            fail "stopped at bp, 2nd instr (wrong address)"
@@ -96,7 +96,7 @@ set test_msg "stopped at bp in reverse, 1st instr"
 gdb_test_multiple "step" "$test_msg" {
     -re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" {
        set stop_addr $expect_out(1,string)
-       if [eval expr "$foo1_addr == $stop_addr"] then {
+       if {[eval expr "$foo1_addr == $stop_addr"]} {
            pass "$test_msg"
        } else {
            fail "$test_msg (wrong address)"
index 2a204748d98f31d2e36a4c9d28ebe4f10d9ab3a5..5bfe14788c6cfeb883bd8bcc1b1572d821fd5dc2 100644 (file)
@@ -29,7 +29,7 @@ if { [prepare_for_testing "failed to prepare" "$testfile" $srcfile] } {
     return -1
 }
 
-if ![runto_main] then {
+if {![runto_main]} {
     return 0
 }
 
index 545804744303f006d3d70822ae96558760829c68..fbf80b89c05b664c40a25a0530eb7bec83551a38 100644 (file)
@@ -25,7 +25,7 @@ if ![supports_process_record] {
 }
 
 
-if ![is_x86_like_target] then {
+if {![is_x86_like_target]} {
     verbose "Skipping i386 reverse tests."
     return
 }
index 15c18dad205fc4290916e4218885e6e163d94429..6f6458c776e630dc8c4d5b08c8ccd6487564a4b2 100644 (file)
@@ -24,7 +24,7 @@ if ![supports_reverse] {
 }
 
 
-if ![is_x86_like_target] then {
+if {![is_x86_like_target]} {
     verbose "Skipping i386 reverse tests."
     return
 }
index 9713e896f59b27826a476f42e53923a44a662464..ac56cd4e50d8d0279f8fe98f3e4f6144ffc9d25d 100644 (file)
@@ -24,7 +24,7 @@ if ![supports_reverse] {
 }
 
 
-if ![istarget "*86*-*linux*"] then {
+if {![istarget "*86*-*linux*"]} {
     verbose "Skipping i386 reverse tests."
     return
 }
index 53fee0986dfca111bc102610927036ebbbf3f378..efc7c847d59e24019b3be7a713c3c45e566a4e47 100644 (file)
@@ -16,7 +16,7 @@
 # This file is part of the gdb testsuite.
 
 
-if ![is_x86_like_target] then {
+if {![is_x86_like_target]} {
     verbose "Skipping i387 reverse float tests."
     return
 }
index cadd4f760357a49b7749e91668ce35d53b0bb7ea..f88c1dc0b86adb35fa90e861b3a81f274844a794 100644 (file)
@@ -16,7 +16,7 @@
 # This file is part of the gdb testsuite.
 
 
-if ![is_x86_like_target] then {
+if {![is_x86_like_target]} {
     verbose "Skipping i387 reverse float tests."
     return
 }
index c5437ecef6f1eb510266a83f69abe0db374eb2e2..82ae39f9cd9158be83cd8906b99732f9dc112089 100644 (file)
@@ -26,7 +26,7 @@ if {[prepare_for_testing "failed to prepare" $testfile $srcfile \
         [list debug]]} {
     return -1
 }
-if { ![runto_main] } then {
+if {![runto_main]} {
     return
 }
 
index 6ef56d30e7ba9f99f81aac680d6e042e731c6da5..71d915d20a96ae886635f989c5a2ce612439ac7b 100644 (file)
@@ -33,7 +33,7 @@ if { [prepare_for_testing "failed to prepare" $testfile $srcfile] } {
     return -1
 }
 
-if ![runto_main] then {
+if {![runto_main]} {
     return 0
 }
 
index 066d307fbcd092e8d10fa9421db3926ebef317fe..bca7399bcdfcf99ac7ede6614686985c356e8272 100644 (file)
@@ -37,18 +37,18 @@ set gen_src record_test_isa_2_06.c
 set executable record_test_isa_2_06
 set options [list debug]
 
-if {![istarget "powerpc*"]} then {
+if {![istarget "powerpc*"]} {
     verbose "Skipping PowerPC ISA 2.06 instruction record_test_2_06."
     return
 }
 
-if {[build_executable "failed to prepare" $executable $srcfile $options] == -1} then {
+if {[build_executable "failed to prepare" $executable $srcfile $options] == -1} {
     return -1
 }
 
 clean_restart $executable
 
-if ![runto_main] then {
+if {![runto_main]} {
     untested "could not run to main"
     return
 }
index 79f04f65b6441ec424c40a2d213302c526cd22f4..b4cddfac8fed3e758859fd96944dc4aa0e373de0 100644 (file)
@@ -37,19 +37,19 @@ standard_testfile
 set gen_src record_test_isa_3_1.c
 set executable record_test_isa_3_1
 
-if {![istarget "powerpc*"] || [skip_power_isa_3_1_tests] } then  {
+if {![istarget "powerpc*"] || [skip_power_isa_3_1_tests]}  {
     verbose "Skipping PowerPC ISA 3.1 instruction record_test."
     return
 }
 
 set options [list additional_flags=-mcpu=power10 debug]
-if {[build_executable "failed to prepare" $executable $srcfile $options] == -1} then {
+if {[build_executable "failed to prepare" $executable $srcfile $options] == -1} {
     return -1
 }
 
 clean_restart $executable
 
-if ![runto_main] then {
+if {![runto_main]} {
     untested "could not run to main"
     return
 }
index 991a6b0656a9cb1a1e74457c417f80e338ddf1ea..d87617539711aaa718122bf015d36ebeef141ef8 100644 (file)
@@ -47,7 +47,7 @@ proc test_one_sig {nextsig} {
 
     set need_another_continue 1
     set missed_handler 0
-    if $this_sig_supported then {
+    if {$this_sig_supported} {
        if { $thissig == "IO" } {
            setup_xfail "i*86-pc-linuxoldld-gnu" "i*86-pc-linuxaout-gnu"
        }
@@ -66,7 +66,7 @@ proc test_one_sig {nextsig} {
        }
     }
 
-    if $need_another_continue then {
+    if {$need_another_continue} {
        if { $thissig == "URG" } {
            setup_xfail "i*86-pc-linuxoldld-gnu" "i*86-pc-linuxaout-gnu"
        }
@@ -86,7 +86,7 @@ proc test_one_sig {nextsig} {
        }
     }
 
-    if { $missed_handler == "0" } then {
+    if {$missed_handler == "0"} {
        set testmsg "advance to $nextsig"
         gdb_test_multiple "signal 0" $testmsg {
            -re "Breakpoint.*gen_$nextsig.*kill.*$gdb_prompt $" {
@@ -132,14 +132,14 @@ proc test_one_sig_reverse {prevsig} {
            exp_continue
        }
        -re "Breakpoint.*kill.*$gdb_prompt " {
-           if { $saw_signal } then {
+           if {$saw_signal} {
                pass "$testmsg (handled)"
            } else {
                xfail "$testmsg (handled)"
            }
        }
        -re "No more reverse-execution history.*kill.*$gdb_prompt " {
-           if { $saw_signal } then {
+           if {$saw_signal} {
                pass "$testmsg (handled)"
            } else {
                xfail "$testmsg (handled)"
index 36fdb74a66fe72592bfcec71957211a40e723e7d..7078067a71eeb783ab0ce7bdb4b73e212017c255 100644 (file)
@@ -47,7 +47,7 @@ proc test_one_sig {nextsig} {
 
     set need_another_continue 1
     set missed_handler 0
-    if $this_sig_supported then {
+    if {$this_sig_supported} {
        if { $thissig == "IO" } {
            setup_xfail "i*86-pc-linuxoldld-gnu" "i*86-pc-linuxaout-gnu"
        }
@@ -72,7 +72,7 @@ proc test_one_sig {nextsig} {
        }
     }
 
-    if $need_another_continue then {
+    if {$need_another_continue} {
        if { $thissig == "URG" } {
            setup_xfail "i*86-pc-linuxoldld-gnu" "i*86-pc-linuxaout-gnu"
        }
@@ -92,7 +92,7 @@ proc test_one_sig {nextsig} {
        }
     }
 
-    if { $missed_handler == "0" } then {
+    if {$missed_handler == "0"} {
        set testmsg "advance to $nextsig"
         gdb_test_multiple "signal 0" $testmsg {
            -re "Breakpoint.*gen_$nextsig.*kill.*$gdb_prompt $" {
@@ -138,14 +138,14 @@ proc test_one_sig_reverse {prevsig} {
            exp_continue
        }
        -re "Breakpoint.*kill.*$gdb_prompt " {
-           if { $saw_signal } then {
+           if {$saw_signal} {
                pass "$testmsg (handled)"
            } else {
                xfail "$testmsg (handled)"
            }
        }
        -re "No more reverse-execution history.*kill.*$gdb_prompt " {
-           if { $saw_signal } then {
+           if {$saw_signal} {
                pass "$testmsg (handled)"
            } else {
                xfail "$testmsg (handled)"
index 4a81a618efc060315881f6da750a8eddb717a34a..21844e54d01487ccff8ee888432f4c79af11c370 100644 (file)
@@ -22,7 +22,7 @@ if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
     return -1
 }
 
-if ![runto_main] then {
+if {![runto_main]} {
     untested "could not run to main"
     continue
 }