diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2009-08-25 11:54:15 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2009-08-25 12:31:14 -0400 |
commit | d27e6fd532200873fe8cc23a155360114fe26110 (patch) | |
tree | cb3644c25555116bcf3070251cb89362ffee3d8c /testsuite/systemtap.base | |
parent | f0a68636d44065dfd60e685924b82e95195c0f9f (diff) | |
download | systemtap-steved-d27e6fd532200873fe8cc23a155360114fe26110.tar.gz systemtap-steved-d27e6fd532200873fe8cc23a155360114fe26110.tar.xz systemtap-steved-d27e6fd532200873fe8cc23a155360114fe26110.zip |
PR4186 cont'd: option #2: standardize on kernel ARCH/SUBARCH throughout
* main.cxx (main): Perform equivalent sed by hand on uname()->machine.
* stap.1.in: Clarify -a ARCH slightly.
* tapsets.cxx (validate_module_elf): Accept "arm*"for EM_ARM.
* tapset/**, testsuite/**: Removed/collapsed "i386"/"i686" branches,
renamed "ppc64"->"powerpc" and "s390x"->"s390".
Diffstat (limited to 'testsuite/systemtap.base')
-rw-r--r-- | testsuite/systemtap.base/utrace_syscall_args.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.base/utrace_syscall_args.stp b/testsuite/systemtap.base/utrace_syscall_args.stp index 5c6ca451..267b7331 100644 --- a/testsuite/systemtap.base/utrace_syscall_args.stp +++ b/testsuite/systemtap.base/utrace_syscall_args.stp @@ -59,7 +59,7 @@ probe process("utrace_syscall_args").syscall { mmap_args[5] = $arg5 mmap_args[6] = $arg6 -%(arch == "s390x" %? +%(arch == "s390" %? # s390 requires this for mmap. Verified by running: # # strace strace utrace_syscall_args addr = mmap_args[1] |