summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/iterate_histogram_buckets.stp
diff options
context:
space:
mode:
authorfche <fche>2006-01-17 23:34:09 +0000
committerfche <fche>2006-01-17 23:34:09 +0000
commit5db2fa894f5ebd65a46ad39740a1629d98230da3 (patch)
treee5f1f16c8a62b7391eb77c280b8229e493c91f6e /testsuite/buildok/iterate_histogram_buckets.stp
parent0f02aa7ae8f49cf1aee0f49a02f0095625a244a6 (diff)
downloadsystemtap-steved-5db2fa894f5ebd65a46ad39740a1629d98230da3.tar.gz
systemtap-steved-5db2fa894f5ebd65a46ad39740a1629d98230da3.tar.xz
systemtap-steved-5db2fa894f5ebd65a46ad39740a1629d98230da3.zip
2006-01-17 Frank Ch. Eigler <fche@elastic.org>
PR 2142 * translate.cxx (EXTRACTORS_PERMISSIVE): New experimental policy parameter. (c_unparser::visit_arrayindex, visit_print_format, visit_stat_op): Tolerate absent index (= NULL runtime return) in pmap. (*): Make semantic_error messages consistently lower case. * testsuite/buildok/iterate_histogram_buckets.stp: Note some missing functionality.
Diffstat (limited to 'testsuite/buildok/iterate_histogram_buckets.stp')
-rwxr-xr-xtestsuite/buildok/iterate_histogram_buckets.stp4
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/buildok/iterate_histogram_buckets.stp b/testsuite/buildok/iterate_histogram_buckets.stp
index e7b4e48e..15bba00c 100755
--- a/testsuite/buildok/iterate_histogram_buckets.stp
+++ b/testsuite/buildok/iterate_histogram_buckets.stp
@@ -25,6 +25,10 @@ probe end
{
if (@hist_log(foo)[bucket] > 0)
printf("bucket %d: %d\n", bucket, @hist_log(foo)[bucket])
+# XXX: both these should work, but histogram for() loops
+# are emitted incorrectly
+# break
+# continue
}
}