projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a11c51a
)
perf test: Check for refcnt in thread_map test
author
Jiri Olsa
<
[email protected]
>
Tue, 21 Jul 2015 12:31:21 +0000
(14:31 +0200)
committer
Arnaldo Carvalho de Melo
<
[email protected]
>
Tue, 21 Jul 2015 17:20:32 +0000
(14:20 -0300)
Checking also for refcnt in thread_map test.
Signed-off-by: Jiri Olsa <
[email protected]
>
Cc: David Ahern <
[email protected]
>
Cc: Namhyung Kim <
[email protected]
>
Cc: Peter Zijlstra <
[email protected]
>
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <
[email protected]
>
tools/perf/tests/thread-map.c
patch
|
blob
|
history
diff --git
a/tools/perf/tests/thread-map.c
b/tools/perf/tests/thread-map.c
index 5acf000939ea5178fa7b98fb0a3d35ff0a9301af..138a0e3431fafd7ae0b6441fa24b7845f7b51ea0 100644
(file)
--- a/
tools/perf/tests/thread-map.c
+++ b/
tools/perf/tests/thread-map.c
@@
-20,6
+20,8
@@
int test__thread_map(void)
TEST_ASSERT_VAL("wrong comm",
thread_map__comm(map, 0) &&
!strcmp(thread_map__comm(map, 0), "perf"));
+ TEST_ASSERT_VAL("wrong refcnt",
+ atomic_read(&map->refcnt) == 1);
thread_map__put(map);
/* test dummy pid */
@@
-33,6
+35,8
@@
int test__thread_map(void)
TEST_ASSERT_VAL("wrong comm",
thread_map__comm(map, 0) &&
!strcmp(thread_map__comm(map, 0), "dummy"));
+ TEST_ASSERT_VAL("wrong refcnt",
+ atomic_read(&map->refcnt) == 1);
thread_map__put(map);
return 0;
}