summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhunt <hunt>2006-03-29 05:19:06 +0000
committerhunt <hunt>2006-03-29 05:19:06 +0000
commit6c416c80f46485576f01d07bc750298424f92013 (patch)
tree3980e6ae3a7109e3356cec77f184e2f52eb8df8c
parent57fe66f6d587630b757a1cd493f08763907f1f36 (diff)
downloadsystemtap-steved-6c416c80f46485576f01d07bc750298424f92013.tar.gz
systemtap-steved-6c416c80f46485576f01d07bc750298424f92013.tar.xz
systemtap-steved-6c416c80f46485576f01d07bc750298424f92013.zip
2006-03-28 Martin Hunt <hunt@redhat.com>
* testsuite/buildok/syscall.stp: Update so it works again.
-rw-r--r--ChangeLog5
-rwxr-xr-xtestsuite/buildok/syscall.stp6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a04988e6..c6cb75e0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-03-28 Martin Hunt <hunt@redhat.com>
+
+ * testsuite/buildok/syscall.stp: Update so
+ it works again.
+
2006-03-16 Tom Zanussi <zanussi@us.ibm.com>
* configure.ac: Revert relayfs version check.
diff --git a/testsuite/buildok/syscall.stp b/testsuite/buildok/syscall.stp
index a802cc97..82689eee 100755
--- a/testsuite/buildok/syscall.stp
+++ b/testsuite/buildok/syscall.stp
@@ -1,8 +1,8 @@
#! stap -up4
probe syscall.*, syscall.*.return {
- if (returnp)
- printf("%d\n", returnval())
+ if (retstr != "")
+ printf("%s\n", retstr)
else
- printf("%s (%s) = ", name, argstr)
+ printf("%s: %s (%s) = ", execname(), name, argstr)
}