diff options
author | fche <fche> | 2006-01-17 23:34:09 +0000 |
---|---|---|
committer | fche <fche> | 2006-01-17 23:34:09 +0000 |
commit | 5db2fa894f5ebd65a46ad39740a1629d98230da3 (patch) | |
tree | e5f1f16c8a62b7391eb77c280b8229e493c91f6e /testsuite | |
parent | 0f02aa7ae8f49cf1aee0f49a02f0095625a244a6 (diff) | |
download | systemtap-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')
-rwxr-xr-x | testsuite/buildok/iterate_histogram_buckets.stp | 4 |
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 } } |