diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-12-06 23:39:32 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:43 -0500 |
commit | 2ee91f197c0bc654b24eed5831fd12aa0d566a7d (patch) | |
tree | 85f9013d1cf17d6a947bbad723ce0cb5427a3dac /lib/locking-selftest.c | |
parent | 50cc670aebf4fc64afaf533fb9fa1c8570f09d74 (diff) |
[PATCH] lockdep: show more details about self-test failures
Make the locking self-test failures (of 'FAILURE' type) easier to debug by
printing more information.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'lib/locking-selftest.c')
-rw-r--r-- | lib/locking-selftest.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/locking-selftest.c b/lib/locking-selftest.c index 7945787f439a..280332c1827c 100644 --- a/lib/locking-selftest.c +++ b/lib/locking-selftest.c | |||
@@ -963,7 +963,9 @@ static void dotest(void (*testcase_fn)(void), int expected, int lockclass_mask) | |||
963 | printk("failed|"); | 963 | printk("failed|"); |
964 | } else { | 964 | } else { |
965 | unexpected_testcase_failures++; | 965 | unexpected_testcase_failures++; |
966 | |||
966 | printk("FAILED|"); | 967 | printk("FAILED|"); |
968 | dump_stack(); | ||
967 | } | 969 | } |
968 | } else { | 970 | } else { |
969 | testcase_successes++; | 971 | testcase_successes++; |