Index: firmware/App/Controllers/BloodLeak.c =================================================================== diff -u -rf416391a93d78ea154b43afd09a8764e2573fd9a -r7c0f0fa22adeb8e268ce1197a9de6adf11d5c09b --- firmware/App/Controllers/BloodLeak.c (.../BloodLeak.c) (revision f416391a93d78ea154b43afd09a8764e2573fd9a) +++ firmware/App/Controllers/BloodLeak.c (.../BloodLeak.c) (revision 7c0f0fa22adeb8e268ce1197a9de6adf11d5c09b) @@ -671,6 +671,13 @@ *************************************************************************/ SELF_TEST_STATUS_T getBloodLeakSelfTestStatus( void ) { +#ifndef _RELEASE_ + if ( SW_CONFIG_ENABLE_VALUE == getSoftwareConfigStatus( SW_CONFIG_DISABLE_BLOOD_LEAK_SELF_TEST ) ) + { + bloodLeakSelfTestStatus = SELF_TEST_STATUS_PASSED; + } +#endif + return bloodLeakSelfTestStatus; }