diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-08-28 12:10:21 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-08-28 12:10:21 -0400 |
commit | 57148ee74505bdc3f33746563a998a9832924a41 (patch) | |
tree | 32937bdf8cccdca3506f9399e4ef2bdadcb58c58 /testsuite/systemtap.base | |
parent | 5d9541658a8598f9430a7285ea04cafdb849e7d7 (diff) | |
download | systemtap-steved-57148ee74505bdc3f33746563a998a9832924a41.tar.gz systemtap-steved-57148ee74505bdc3f33746563a998a9832924a41.tar.xz systemtap-steved-57148ee74505bdc3f33746563a998a9832924a41.zip |
fix global-var array index rendering
(plus emacs' automagic whitespace fixes)
Diffstat (limited to 'testsuite/systemtap.base')
-rw-r--r-- | testsuite/systemtap.base/global_end.exp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/systemtap.base/global_end.exp b/testsuite/systemtap.base/global_end.exp index b1931a90..08cf0dea 100644 --- a/testsuite/systemtap.base/global_end.exp +++ b/testsuite/systemtap.base/global_end.exp @@ -9,10 +9,10 @@ set ok 0 expect { -timeout 180 -re {one,0x1.*one,0x2.*two,0x1.*two,0x2} { incr ok; exp_continue } - -re {alpha."one"..1.=0x1} { incr ok; exp_continue } - -re {alpha."one"..2.=0x2} { incr ok; exp_continue } - -re {alpha."two"..1.=0x3} { incr ok; exp_continue } - -re {alpha."two"..2.=0x4} { incr ok; exp_continue } + -re {alpha."one".1.=0x1} { incr ok; exp_continue } + -re {alpha."one".2.=0x2} { incr ok; exp_continue } + -re {alpha."two".1.=0x3} { incr ok; exp_continue } + -re {alpha."two".2.=0x4} { incr ok; exp_continue } -re {gamma="abcdefghijklmnopqrstuvwxyz"} { incr ok; exp_continue } -re {iota."one".="eleven"} { incr ok; exp_continue } -re {iota."two".="twelve"} { incr ok; exp_continue } |