[<prev] [next>] [day] [month] [year] [list]
Message-ID: <tip-c1u05npqbf6epse17ovfejoj@git.kernel.org>
Date: Sat, 7 Nov 2015 23:35:03 -0800
From: tip-bot for Arnaldo Carvalho de Melo <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: tglx@...utronix.de, adrian.hunter@...el.com,
linux-kernel@...r.kernel.org, dsahern@...il.com, acme@...hat.com,
mingo@...nel.org, jolsa@...hat.com, namhyung@...nel.org,
wangnan0@...wei.com, hpa@...or.com
Subject: [tip:perf/urgent] perf test:
Do not be case sensitive when searching for matching tests
Commit-ID: 345c99a303e1d97b407bf99190314a878d59ca92
Gitweb: http://git.kernel.org/tip/345c99a303e1d97b407bf99190314a878d59ca92
Author: Arnaldo Carvalho de Melo <acme@...hat.com>
AuthorDate: Fri, 6 Nov 2015 17:03:38 -0300
Committer: Arnaldo Carvalho de Melo <acme@...hat.com>
CommitDate: Fri, 6 Nov 2015 17:50:04 -0300
perf test: Do not be case sensitive when searching for matching tests
Before:
# perf test llvm
# perf test LLVM
35: Test LLVM searching and compiling : Ok
#
After
# perf test llvm
35: Test LLVM searching and compiling : Ok
#
Cc: Adrian Hunter <adrian.hunter@...el.com>
Cc: David Ahern <dsahern@...il.com>
Cc: Jiri Olsa <jolsa@...hat.com>
Cc: Namhyung Kim <namhyung@...nel.org>
Cc: Wang Nan <wangnan0@...wei.com>
Link: http://lkml.kernel.org/n/tip-c1u05npqbf6epse17ovfejoj@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com>
---
tools/perf/tests/builtin-test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/perf/tests/builtin-test.c b/tools/perf/tests/builtin-test.c
index 7b0120a..80c442e 100644
--- a/tools/perf/tests/builtin-test.c
+++ b/tools/perf/tests/builtin-test.c
@@ -196,7 +196,7 @@ static bool perf_test__matches(struct test *test, int curr, int argc, const char
continue;
}
- if (strstr(test->desc, argv[i]))
+ if (strcasestr(test->desc, argv[i]))
return true;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists