diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-09-02 10:30:27 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-09-02 10:30:27 -0400 |
commit | cd79792f037f23d9636ab9b4097af11d0aa26aea (patch) | |
tree | 38da0ddeab7cc0b0d332894b0a634338f2cd3ca9 /testsuite/systemtap.base/global_end.stp | |
parent | e070cc9c2f207bdaac1f3ca2c0ac4e291185bff1 (diff) | |
parent | eebd7e0f235484ae0a6857fa41bda5dd61a2de68 (diff) | |
download | systemtap-steved-cd79792f037f23d9636ab9b4097af11d0aa26aea.tar.gz systemtap-steved-cd79792f037f23d9636ab9b4097af11d0aa26aea.tar.xz systemtap-steved-cd79792f037f23d9636ab9b4097af11d0aa26aea.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
* 'master' of ssh://sources.redhat.com/git/systemtap:
Fix semantic error caused by -P option in nodwarf testing.
revised for new publican build update
added all else
Display written but unread global statistics.
Diffstat (limited to 'testsuite/systemtap.base/global_end.stp')
-rw-r--r-- | testsuite/systemtap.base/global_end.stp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/testsuite/systemtap.base/global_end.stp b/testsuite/systemtap.base/global_end.stp index e9a1eb8f..b26b7c03 100644 --- a/testsuite/systemtap.base/global_end.stp +++ b/testsuite/systemtap.base/global_end.stp @@ -1,4 +1,4 @@ -global alpha, beta, gamma, iota +global alpha, beta, gamma, iota, epsilon probe begin { gamma = "abcdefghijklmnopqrstuvwxyz" @@ -15,6 +15,15 @@ probe begin { beta["one",2] = 2 beta["two",1] = 3 beta["two",2] = 4 + + epsilon["one",1] <<< 1 + epsilon["one",1] <<< 2 + epsilon["one",1] <<< 3 + epsilon["one",1] <<< 4 + epsilon["two",2] <<< 10 + epsilon["two",2] <<< 20 + epsilon["two",2] <<< 30 + epsilon["two",2] <<< 40 } probe timer.ms(2000) { |