|
From: <sv...@va...> - 2012-12-21 02:15:37
|
petarj 2012-12-21 02:15:23 +0000 (Fri, 21 Dec 2012)
New Revision: 13192
Log:
Minor style improvement over r13190.
Prerequisite should be non existence of a #define (rather than existence of
#undef in the comments).
Modified files:
trunk/drd/tests/pth_spinlock.vgtest
Modified: trunk/drd/tests/pth_spinlock.vgtest (+1 -1)
===================================================================
--- trunk/drd/tests/pth_spinlock.vgtest 2012-12-20 19:02:17 +00:00 (rev 13191)
+++ trunk/drd/tests/pth_spinlock.vgtest 2012-12-21 02:15:23 +00:00 (rev 13192)
@@ -1,3 +1,3 @@
-prereq: test -e pth_spinlock && ./supported_libpthread && grep '#undef DISABLE_PTHREAD_SPINLOCK_INTERCEPT' ../../config.h > /dev/null
+prereq: test -e pth_spinlock && ./supported_libpthread && ! grep '#define DISABLE_PTHREAD_SPINLOCK_INTERCEPT 1' ../../config.h > /dev/null
vgopts: --read-var-info=yes --check-stack-var=yes
prog: pth_spinlock
|