From 2b7e0f29ac8bc4ed53c960607ead69cc7a571454 Mon Sep 17 00:00:00 2001 From: William Cohen Date: Fri, 6 Feb 2009 12:36:52 -0500 Subject: Move symbols.exp and symbols.stp to systemtap.context directory. --- testsuite/systemtap.context/symbols.stp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 testsuite/systemtap.context/symbols.stp (limited to 'testsuite/systemtap.context/symbols.stp') diff --git a/testsuite/systemtap.context/symbols.stp b/testsuite/systemtap.context/symbols.stp new file mode 100644 index 00000000..040c3444 --- /dev/null +++ b/testsuite/systemtap.context/symbols.stp @@ -0,0 +1,11 @@ +#! stap + +probe begin { + # a spectrum of figures for 32-bit x86 + print_stack ("0x0 0x80000000 0xc0000000 0xe0000000 0xf0000000 0xffffffff") + # for x86_64 + print_stack ("0xffffffff00000000 0xffffffff80000000 0xffffffff80120000") + print_stack ("0xffffffff88000000 0xffffffffffffffff") + # ... for a total of 11 lines, which symbols.exp counts + exit () +} -- cgit