diff options
author | WANG Chao <[email protected]> | 2014-11-12 16:27:05 +0800 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2014-11-19 12:33:47 -0300 |
commit | 887e73d7f42c6a146b572a0577e9875ccca66f37 (patch) | |
tree | 2a2898c7e35b2b52fe7529c45c072cfa797bbc04 | |
parent | 162bcc17bb876772793ca070ebd6488cfdae09bf (diff) |
perf test: fix typo in python test
Library loading in python syntax should be 'import perf', not 'use perf'.
Signed-off-by: WANG Chao <[email protected]>
Cc: Adrian Hunter <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jean Pihet <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Masami Hiramatsu <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/tests/builtin-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/tests/builtin-test.c b/tools/perf/tests/builtin-test.c index 162c978f1491..4b7d9ab0f049 100644 --- a/tools/perf/tests/builtin-test.c +++ b/tools/perf/tests/builtin-test.c @@ -85,7 +85,7 @@ static struct test { .func = test__hists_link, }, { - .desc = "Try 'use perf' in python, checking link problems", + .desc = "Try 'import perf' in python, checking link problems", .func = test__python_use, }, { |