locking/lockdep/selftests: Fix mixed read-write ABBA tests

Commit:

e91498589746 ("locking/lockdep/selftests: Add mixed read-write ABBA tests")

adds an explicit FAILURE to the locking selftest but overlooked the
fact that this kills lockdep. Fudge the test to avoid this.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: hpa@zytor.com
Link: http://lkml.kernel.org/r/20170828124245.xlo2yshxq2btgmuf@hirez.programming.kicks-ass.net
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by

Peter Zijlstra and committed by
Ingo Molnar
d82fed75 ec81048c

+6
+6
lib/locking-selftest.c
··· 2031 2031 print_testname("mixed read-lock/lock-write ABBA"); 2032 2032 pr_cont(" |"); 2033 2033 dotest(rlock_ABBA1, FAILURE, LOCKTYPE_RWLOCK); 2034 + /* 2035 + * Lockdep does indeed fail here, but there's nothing we can do about 2036 + * that now. Don't kill lockdep for it. 2037 + */ 2038 + unexpected_testcase_failures--; 2039 + 2034 2040 pr_cont(" |"); 2035 2041 dotest(rwsem_ABBA1, FAILURE, LOCKTYPE_RWSEM); 2036 2042