summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.examples/memory/mmanonpage.meta
diff options
context:
space:
mode:
authorWenji Huang <wenji.huang@oracle.com>2009-09-08 18:38:14 -0400
committerWenji Huang <wenji.huang@oracle.com>2009-09-08 18:38:14 -0400
commit2de206d6b209e5e3b518f38c9991e4434940f72e (patch)
tree0c1908efd5c766726940b8ac26b5e343bf573a1e /testsuite/systemtap.examples/memory/mmanonpage.meta
parente13354499dbd1f854040bc120bdfd1d0fc9ff6b3 (diff)
downloadsystemtap-steved-2de206d6b209e5e3b518f38c9991e4434940f72e.tar.gz
systemtap-steved-2de206d6b209e5e3b518f38c9991e4434940f72e.tar.xz
systemtap-steved-2de206d6b209e5e3b518f38c9991e4434940f72e.zip
PR10604: check availability for example test cases
* testsuite/systemtap.examples/check.exp: Handle with test_support. * testsuite/systemtap.examples/io/iostat-scsi.meta: Add meta-tag test_support. * testsuite/systemtap.examples/memory/mmanonpage.meta: Ditto. * testsuite/systemtap.examples/memory/mmfilepage.meta: Ditto. * testsuite/systemtap.examples/memory/mmreclaim.meta: Ditto. * testsuite/systemtap.examples/memory/mmwriteback.meta: Ditto. * testsuite/systemtap.examples/network/autofs4.meta: Ditto. * testsuite/systemtap.examples/network/dropwatch.meta: Ditto. * testsuite/systemtap.examples/process/schedtimes.meta: Ditto.
Diffstat (limited to 'testsuite/systemtap.examples/memory/mmanonpage.meta')
-rw-r--r--testsuite/systemtap.examples/memory/mmanonpage.meta1
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/systemtap.examples/memory/mmanonpage.meta b/testsuite/systemtap.examples/memory/mmanonpage.meta
index 496d10d8..25385d82 100644
--- a/testsuite/systemtap.examples/memory/mmanonpage.meta
+++ b/testsuite/systemtap.examples/memory/mmanonpage.meta
@@ -9,5 +9,6 @@ exit: user-controlled
output: sorted-list
scope: system-wide
description: The mmanonpage.stp script uses the virtual memory tracepoints available in some kernels to track the number of faults, user space frees, page ins, copy on writes and unmaps for anonymous pages. When the script is terminated the counts are printed for each process that allocated pages while the script was running. This script displays the anonymous page statistics for each process that ran while the script is active. Its useful in debugging leaks in the anonymous regions of a process.
+test_support: stap -l kernel.trace("mm_page_allocation"),kernel.trace("mm_page_free"),kernel.trace("mm_anon_fault"),kernel.trace("mm_anon_pgin"),kernel.trace("mm_anon_cow"),kernel.trace("mm_anon_unmap"),kernel.trace("mm_anon_userfree")
test_check: stap -p4 mmanonpage.stp
test_installcheck: stap mmanonpage.stp -c "sleep 1"