From 593349ec17271788ee9d8b471b38c1791eaac4fc Mon Sep 17 00:00:00 2001 From: Stan Cox Date: Tue, 11 Jan 2022 16:27:53 -0500 Subject: [PATCH] Adjust for unused global variable decimal automatic logging Unused global variable automatic logging is now in decimal. --- testsuite/systemtap.base/global_end.exp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/testsuite/systemtap.base/global_end.exp b/testsuite/systemtap.base/global_end.exp index 5db7d2cf6..67981167a 100644 --- a/testsuite/systemtap.base/global_end.exp +++ b/testsuite/systemtap.base/global_end.exp @@ -19,10 +19,10 @@ foreach runtime [get_runtime_list] { set ok 0 expect { -timeout 180 - -re {^alpha."two".2.=0x4\r\n} { incr ok; exp_continue } - -re {^alpha."two".1.=0x3\r\n} { incr ok; exp_continue } - -re {^alpha."one".2.=0x2\r\n} { incr ok; exp_continue } - -re {^alpha."one".1.=0x1\r\n} { incr ok; exp_continue } + -re {^alpha."two".2.=4\r\n} { incr ok; exp_continue } + -re {^alpha."two".1.=3\r\n} { incr ok; exp_continue } + -re {^alpha."one".2.=2\r\n} { incr ok; exp_continue } + -re {^alpha."one".1.=1\r\n} { incr ok; exp_continue } -re {^epsilon."one", 1. count:4 min:1 max:4 sum:10 avg:2\r\n} { incr ok; exp_continue } -re {^epsilon."two", 2. count:4 min:10 max:40 sum:100 avg:25\r\n} { @@ -64,12 +64,12 @@ foreach runtime [get_runtime_list] { set ok 0 expect { -timeout 180 - -re {gs0_save=0x29} { incr ok; exp_continue } - -re {gs2=0x4} { incr ok; exp_continue } - -re {gs3=0x4} { incr ok; exp_continue } - -re {gs4=0x5} { incr ok; exp_continue } - -re {ga1."foo".=0x2} { incr ok; exp_continue } - -re {ga2."foo".=0x1} { incr ok; exp_continue } + -re {gs0_save=41} { incr ok; exp_continue } + -re {gs2=4} { incr ok; exp_continue } + -re {gs3=4} { incr ok; exp_continue } + -re {gs4=5} { incr ok; exp_continue } + -re {ga1."foo".=2} { incr ok; exp_continue } + -re {ga2."foo".=1} { incr ok; exp_continue } timeout { fail "$test (timeout)" } eof { } } -- 2.43.5