All of lore.kernel.org
 help / color / mirror / Atom feed
From: Li Wang <liwang@redhat.com>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH V2 2/9] tracing/ftrace: add new case for ftrace userstacktrace
Date: Thu, 5 May 2016 14:24:29 +0800	[thread overview]
Message-ID: <20160505062428.GC426@gmail.com> (raw)
In-Reply-To: <20160504160027.GF12244@rei.lan>

On Wed, May 04, 2016 at 06:00:27PM +0200, Cyril Hrubis wrote:
> Hi!
> > +ftrace_userstacktrace_test()
> > +{
> > +	if [ ! -e "$TSTACK_TRACE_PATH" ]; then
> > +		tst_brkm TCONF ignored "Stack Tracer is not cofigured in This kernel"
> 
> The 'ignored' should really be removed here, it's a leftover when the
> tst_brkm called the broken-by-design binary.

ok. thanks for reivewing.

> 
> > +	fi
> > +
> > +	for i in $(seq $LOOP); do
> > +		echo 1 >  $TSTACK_TRACE_PATH
> > +		echo userstacktrace > $TRACING_PATH/trace_options
> > +		grep -q "^userstacktrace"  $TRACING_PATH/trace_options
> > +		if [ $? -ne 0 ]; then
> > +			tst_brkm TBROK "Failed to set userstacktrace"
> > +		fi
> > +
> > +		if [ -f "$EXC_PAGE_FAULT_ENABLE" ]; then
> > +			exc_page_fault_enable=`cat $EXC_PAGE_FAULT_ENABLE`
> > +			echo 1 > $EXC_PAGE_FAULT_ENABLE
> > +		else
> > +			mm_page_fault_enable=`cat MM_PAGE_FAULT_ENABLE`
> > +			echo 1 > $MM_PAGE_FAULT_ENABLE
> > +		fi
> > +	done
> > +
> > +	if [ -f "$EXC_PAGE_FAULT_ENABLE" ]; then
> > +		echo "$exc_page_fault_enable" > $EXC_PAGE_FAULT_ENABLE
> > +	else
> > +		echo "$mm_page_fault_enable" > $MM_PAGE_FAULT_ENABLE
> > +	fi
> > +
> > +	tst_resm TPASS "Finished running the test"
> > +}
> 
> -- 
> Cyril Hrubis
> chrubis@suse.cz

  reply	other threads:[~2016-05-05  6:24 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-18  8:04 [LTP] [PATCH V2 0/9] tracing: make ftrace tests to be extended Chunyu Hu
2016-04-18  8:04 ` [LTP] [PATCH V2 1/9] tracing: reorganize ftrace-stress tests to general tests Chunyu Hu
2016-04-18  8:04   ` [LTP] [PATCH V2 2/9] tracing/ftrace: add new case for ftrace userstacktrace Chunyu Hu
2016-04-18  8:04     ` [LTP] [PATCH V2 3/9] tracing/ftrace: add a new case for signal_generate Chunyu Hu
2016-04-18  8:04       ` [LTP] [PATCH V2 4/9] ftrace_stress: skip unsupported tests Chunyu Hu
2016-04-18  8:04         ` [LTP] [PATCH V2 5/9] ftrace_stress: keep the name of testscipt in sync with tracing file Chunyu Hu
2016-04-18  8:04           ` [LTP] [PATCH V2 6/9] testcases/lib: Add tst_random decmical integer generator Chunyu Hu
2016-04-18  8:04             ` [LTP] [PATCH V2 7/9] ftrace_stress: update the trace_options test Chunyu Hu
2016-04-18  8:04               ` [LTP] [PATCH V2 8/9] ftrace_stress: add two new tests Chunyu Hu
2016-04-18  8:04                 ` [LTP] [PATCH V2 9/9] ftrace_stress: cleanup and use ltp API Chunyu Hu
2016-05-04 14:56                   ` Cyril Hrubis
2016-05-04 15:42                     ` Chunyu Hu
2016-05-04 16:32                       ` Cyril Hrubis
2016-05-05  7:44                       ` Chunyu Hu
2016-05-10 14:13                         ` Cyril Hrubis
2016-05-11 11:01                           ` Chunyu Hu
2016-05-04 16:57               ` [LTP] [PATCH V2 7/9] ftrace_stress: update the trace_options test Cyril Hrubis
2016-05-04 13:34             ` [LTP] [PATCH V2 6/9] testcases/lib: Add tst_random decmical integer generator Cyril Hrubis
2016-05-04 15:04               ` Chunyu Hu
2016-05-04 15:55                 ` Cyril Hrubis
2016-05-04 16:28                   ` Chunyu Hu
2016-05-04 23:40                     ` Chunyu Hu
2016-05-04 16:50         ` [LTP] [PATCH V2 4/9] ftrace_stress: skip unsupported tests Cyril Hrubis
2016-05-05  0:53           ` Chunyu Hu
2016-05-10 14:25             ` Cyril Hrubis
2016-05-11 11:14               ` Chunyu Hu
2016-05-04 16:00     ` [LTP] [PATCH V2 2/9] tracing/ftrace: add new case for ftrace userstacktrace Cyril Hrubis
2016-05-05  6:24       ` Li Wang [this message]
2016-05-04 16:26   ` [LTP] [PATCH V2 1/9] tracing: reorganize ftrace-stress tests to general tests Cyril Hrubis
2016-05-05  6:21     ` Li Wang
2016-05-05 10:11     ` Chunyu Hu
2016-05-05 10:53       ` Chunyu Hu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160505062428.GC426@gmail.com \
    --to=liwang@redhat.com \
    --cc=ltp@lists.linux.it \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.