diff options
author | fche <fche> | 2008-03-20 19:33:44 +0000 |
---|---|---|
committer | fche <fche> | 2008-03-20 19:33:44 +0000 |
commit | c1bc99e0a04fd77b88e949d256df7594d15008e5 (patch) | |
tree | 2cc6181e64310fd0ead5e3545e7e8515c080d8b4 | |
parent | 39e3139ab7d9422237b73773693617fff22aa67d (diff) | |
download | systemtap-steved-c1bc99e0a04fd77b88e949d256df7594d15008e5.tar.gz systemtap-steved-c1bc99e0a04fd77b88e949d256df7594d15008e5.tar.xz systemtap-steved-c1bc99e0a04fd77b88e949d256df7594d15008e5.zip |
2008-03-20 Frank Ch. Eigler <fche@elastic.org>
PR 5956.
* null.stp: New file, defining global NULL=0.
PR 5956.
* semko/fortyfive.stp: New test.
-rw-r--r-- | tapset/ChangeLog | 5 | ||||
-rw-r--r-- | tapset/null.stp | 2 | ||||
-rw-r--r-- | testsuite/ChangeLog | 5 | ||||
-rwxr-xr-x | testsuite/semko/fortysix.stp | 3 |
4 files changed, 15 insertions, 0 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index 5ccfe91e..da21a5ff 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,8 @@ +2008-03-20 Frank Ch. Eigler <fche@elastic.org> + + PR 5956. + * null.stp: New file, defining global NULL=0. + 2008-03-11 Will Cohen <wcohen@redhat.com> * syscalls2.stp (syscall.wait{4|id}): Correct for 2.6.24.n kernels. diff --git a/tapset/null.stp b/tapset/null.stp new file mode 100644 index 00000000..c8713665 --- /dev/null +++ b/tapset/null.stp @@ -0,0 +1,2 @@ + +global NULL = 0 diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog index 4d9e582f..16f7af57 100644 --- a/testsuite/ChangeLog +++ b/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-03-20 Frank Ch. Eigler <fche@elastic.org> + + PR 5956. + * semko/fortyfive.stp: New test. + 2008-03-15 Frank Ch. Eigler <fche@elastic.org> * systemtap.base/maxactive.exp, probefunc.exp: Standardize pass msg. diff --git a/testsuite/semko/fortysix.stp b/testsuite/semko/fortysix.stp new file mode 100755 index 00000000..9774f31f --- /dev/null +++ b/testsuite/semko/fortysix.stp @@ -0,0 +1,3 @@ +#! stap -p2 + +probe begin { if ("foo" == NULL) log ("boo") } # check NULL as integral global |