On Mon, Dec 07, 2015 at 07:53:14PM +0100, Michael Petlan wrote: SNIP
> diff --git a/tools/perf/testsuite/base_annotate/setup.sh > b/tools/perf/testsuite/base_annotate/setup.sh > new file mode 100755 > index 0000000..1a1bc41 > --- /dev/null > +++ b/tools/perf/testsuite/base_annotate/setup.sh > @@ -0,0 +1,35 @@ > +#!/bin/bash > + > +# > +# setup.sh of perf annotate test > +# Author: Michael Petlan <mpet...@redhat.com> > +# > +# Description: > +# > +# FIXME - build C program > +# > +# > + > +# include working environment > +. ../common/init.sh > +. ./settings.sh > + > +THIS_TEST_NAME=`basename $0 .sh` > + > +make -s -C examples > +print_results $? 0 "building the example code" > +TEST_RESULT=$? > + > +# record some data > +$CMD_PERF record examples/load > /dev/null 2> setup_record.log > +PERF_EXIT_CODE=$? > + > +# check the perf record output > +../common/check_all_lines_matched.pl "$RE_LINE_RECORD1" "$RE_LINE_RECORD2" < > setup_record.log > +CHECK_EXIT_CODE=$? > + > +print_results $PERF_EXIT_CODE $CHECK_EXIT_CODE "record data" > +(( TEST_RESULT += $? )) > + > +print_overall_results $TEST_RESULT so setup.sh script is already running some tests? I thought it's just for seting up the test data or whatever environment the testcase needs.. jirka -- To unsubscribe from this list: send the line "unsubscribe linux-perf-users" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html