diff options
author | Masami Hiramatsu <mhiramat@kernel.org> | 2017-05-23 15:07:57 +0900 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2017-06-07 11:00:01 -0600 |
commit | 1917d2c82bc4ba121b16c4afcaf0c3723c36bf4e (patch) | |
tree | c47fc7d4a465a5691cc21a54020d4f8edbd95e63 /tools | |
parent | d7b91c0b1c7f40241d8d47f0a2a0d616a1127635 (diff) | |
download | linux-stable-1917d2c82bc4ba121b16c4afcaf0c3723c36bf4e.tar.gz linux-stable-1917d2c82bc4ba121b16c4afcaf0c3723c36bf4e.tar.bz2 linux-stable-1917d2c82bc4ba121b16c4afcaf0c3723c36bf4e.zip |
selftests/ftrace: Add instance indication in test log
Add instance test indication in test log too.
Current ftracetest shows instance test indication on
the list of test, but not in the log for each test.
This adds instance test indication on the top of
each log, like below;
execute (instance) : /ftrace/test.d/ftrace/func_set_ftrace_file.tc
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/testing/selftests/ftrace/ftracetest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/ftrace/ftracetest b/tools/testing/selftests/ftrace/ftracetest index 717581145cfc..14a03ea1e21d 100755 --- a/tools/testing/selftests/ftrace/ftracetest +++ b/tools/testing/selftests/ftrace/ftracetest @@ -250,7 +250,7 @@ run_test() { # testfile local testlog=`mktemp $LOG_DIR/${testname}-log.XXXXXX` export TMPDIR=`mktemp -d /tmp/ftracetest-dir.XXXXXX` testcase $1 - echo "execute: "$1 > $testlog + echo "execute$INSTANCE: "$1 > $testlog SIG_RESULT=0 if [ $VERBOSE -ge 2 ]; then __run_test $1 2>> $testlog | tee -a $testlog |