diff options
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/ChangeLog | 7 | ||||
-rwxr-xr-x | testsuite/buildok/twentyfive.stp | 9 |
2 files changed, 15 insertions, 1 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog index ed8ba350..ca94607c 100644 --- a/testsuite/ChangeLog +++ b/testsuite/ChangeLog @@ -1,4 +1,9 @@ -2006-12-18 Josh Stone <joshua.i.stone@intel.com> +2006-12-19 Frank Ch. Eigler <fche@redhat.com> + + PR 3522. + * buildok/twentyfive.stp: New test for static $var access. + +2006-12-18 Josh Stone <joshua.i.stone@intel.com> * systemtap.base/deref.exp, systemtap.base/deref.exp: Add a test for successfully dereferencing pointers of various sizes. This is known to diff --git a/testsuite/buildok/twentyfive.stp b/testsuite/buildok/twentyfive.stp new file mode 100755 index 00000000..1bd39b02 --- /dev/null +++ b/testsuite/buildok/twentyfive.stp @@ -0,0 +1,9 @@ +#! stap -p4 + +# PR 3522. + +probe module("ext3").function("ext3_check_dir_entry") { + print ($ext3_filetype_table[1]) # static global in CU +} +probe timer.s(4) { exit () } + |