diff options
author | Jiri Olsa <[email protected]> | 2015-07-21 14:31:21 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2015-07-21 14:20:32 -0300 |
commit | 35318d204db83f5c1f24c281839763b271b9b323 (patch) | |
tree | c784e32d08674d7127ee5c1824f8e16c1a770caa | |
parent | a11c51acc52822754d66a11c15f6f6edd4d23c55 (diff) |
perf test: Check for refcnt in thread_map test
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]>
-rw-r--r-- | tools/perf/tests/thread-map.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/tests/thread-map.c b/tools/perf/tests/thread-map.c index 5acf000939ea..138a0e3431fa 100644 --- 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; } |