From e7e46f07f573891063a5d2a02b29e35f9d1bfa7e Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 8 Nov 2005 22:41:31 +0000 Subject: [PATCH] less cpu intensive for soft float cpus --- src/libCom/test/epicsTimerTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libCom/test/epicsTimerTest.cpp b/src/libCom/test/epicsTimerTest.cpp index 02e359257..8fc11726f 100644 --- a/src/libCom/test/epicsTimerTest.cpp +++ b/src/libCom/test/epicsTimerTest.cpp @@ -170,7 +170,7 @@ inline void cancelVerify::cancel () epicsTimerNotify::expireStatus cancelVerify::expire ( const epicsTime & ) { double root = 3.14159; - for ( unsigned i = 0u; i < 10000; i++ ) { + for ( unsigned i = 0u; i < 1000; i++ ) { root = sqrt ( root ); } assert ( ! this->failOutIfExpireIsCalled );