From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 112071 invoked by alias); 10 Dec 2015 10:43:11 -0000 Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org Received: (qmail 112040 invoked by uid 89); 10 Dec 2015 10:43:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.5 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 X-HELO: heian.cn.fujitsu.com Received: from Unknown (HELO heian.cn.fujitsu.com) (59.151.112.132) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 10 Dec 2015 10:43:09 +0000 Received: from bogon (HELO cn.fujitsu.com) ([10.167.33.5]) by heian.cn.fujitsu.com with ESMTP; 10 Dec 2015 18:42:48 +0800 Received: from G08CNEXCHPEKD02.g08.fujitsu.local (unknown [10.167.33.83]) by cn.fujitsu.com (Postfix) with ESMTP id 044DA401E4CB for ; Thu, 10 Dec 2015 18:42:49 +0800 (CST) Received: from localhost.localdomain (10.167.226.48) by G08CNEXCHPEKD02.g08.fujitsu.local (10.167.33.89) with Microsoft SMTP Server (TLS) id 14.3.181.6; Thu, 10 Dec 2015 18:42:48 +0800 From: Zhou Wenjian To: Subject: [PATCH 1/3] Add more case for -p Date: Thu, 10 Dec 2015 10:43:00 -0000 Message-ID: <1449744091-1673-1-git-send-email-zhouwj-fnst@cn.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain X-yoursite-MailScanner-Information: Please contact the ISP for more information X-yoursite-MailScanner-ID: 044DA401E4CB.A5751 X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: zhouwj-fnst@cn.fujitsu.com X-IsSubscribed: yes X-SW-Source: 2015-q4/txt/msg00255.txt.bz2 * testsuite/parseko/cmdline01.stp: new test case --- testsuite/parseko/cmdline01.stp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 testsuite/parseko/cmdline01.stp diff --git a/testsuite/parseko/cmdline01.stp b/testsuite/parseko/cmdline01.stp new file mode 100755 index 0000000..3a80e8f --- /dev/null +++ b/testsuite/parseko/cmdline01.stp @@ -0,0 +1,8 @@ +#!/bin/sh + +# -p NUM Stop after pass NUM. The passes are numbered 1-5: parse, elabo- +# rate, translate, compile, run. +# +# NUM must be between 1 and 5 + +stap $@ -p6 -e 'probe begin { exit() }' -- 1.8.3.1