From e26df1cb46bf61450a3e9569cd892c91fd52c0a7 Mon Sep 17 00:00:00 2001 From: Dave Brolley Date: Fri, 20 Feb 2009 16:58:57 -0500 Subject: Check for required resources and tools before attempting tests using the client/server. Ensure that tests run with/without the server have unique names. --- testsuite/systemtap.server/hello.stp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 testsuite/systemtap.server/hello.stp (limited to 'testsuite/systemtap.server/hello.stp') diff --git a/testsuite/systemtap.server/hello.stp b/testsuite/systemtap.server/hello.stp new file mode 100755 index 00000000..a1c4aacb --- /dev/null +++ b/testsuite/systemtap.server/hello.stp @@ -0,0 +1,8 @@ +#! stap + +probe begin +{ + printf("Hello "); + printf("From Server\n"); + exit() +} -- cgit