Index: TestSupport.h =================================================================== diff -u -r107ddfdbf78a138840f98f280f4289fe3575ffd7 -r589f372c79bfe50487806e07161552bea6e7a09c --- TestSupport.h (.../TestSupport.h) (revision 107ddfdbf78a138840f98f280f4289fe3575ffd7) +++ TestSupport.h (.../TestSupport.h) (revision 589f372c79bfe50487806e07161552bea6e7a09c) @@ -187,7 +187,7 @@ BOOL o_name( U32 i_name, t value ) \ { \ BOOL result = FALSE; \ - if ( i_name <= max ) \ + if ( i_name < max ) \ { \ if ( TRUE == isTestingActivated() ) \ { \ @@ -201,7 +201,7 @@ BOOL r_name( U32 i_name ) \ { \ BOOL result = FALSE; \ - if ( i_name <= max ) \ + if ( i_name < max ) \ { \ if ( TRUE == isTestingActivated() ) \ { \