-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf tests: Add is_printable_array test
Add automated test for is_printable_array function. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Pirko <jiri@mellanox.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Steven Rostedt <rostedt@goodmis.org> Link: http://lkml.kernel.org/r/1468685480-18951-4-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
- Loading branch information
Jiri Olsa
authored and
Arnaldo Carvalho de Melo
committed
Jul 18, 2016
1 parent
accaed2
commit 988dd77
Showing
4 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#include <linux/compiler.h> | ||
#include "tests.h" | ||
#include "debug.h" | ||
#include "util.h" | ||
|
||
int test__is_printable_array(int subtest __maybe_unused) | ||
{ | ||
char buf1[] = { 'k', 'r', 4, 'v', 'a', 0 }; | ||
char buf2[] = { 'k', 'r', 'a', 'v', 4, 0 }; | ||
struct { | ||
char *buf; | ||
unsigned int len; | ||
int ret; | ||
} t[] = { | ||
{ (char *) "krava", sizeof("krava"), 1 }, | ||
{ (char *) "krava", sizeof("krava") - 1, 0 }, | ||
{ (char *) "", sizeof(""), 1 }, | ||
{ (char *) "", 0, 0 }, | ||
{ NULL, 0, 0 }, | ||
{ buf1, sizeof(buf1), 0 }, | ||
{ buf2, sizeof(buf2), 0 }, | ||
}; | ||
unsigned int i; | ||
|
||
for (i = 0; i < ARRAY_SIZE(t); i++) { | ||
int ret; | ||
|
||
ret = is_printable_array((char *) t[i].buf, t[i].len); | ||
if (ret != t[i].ret) { | ||
pr_err("failed: test %u\n", i); | ||
return TEST_FAIL; | ||
} | ||
} | ||
|
||
return TEST_OK; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters