@ -1182,22 +1182,22 @@ void Test_RunCommon( void )
@@ -1182,22 +1182,22 @@ void Test_RunCommon( void )
Msg ( " Checking COM_ParseFile... \n " ) ;
file = _ COM_ParseFileSafe( file , buf , sizeof ( buf ) , 0 , & len ) ;
file = COM_ParseFileSafe ( file , buf , sizeof ( buf ) , 0 , & len , NULL ) ;
TASSERT ( ! Q_strcmp ( buf , " q " ) & & len = = 1 ) ;
file = _ COM_ParseFileSafe( file , buf , sizeof ( buf ) , 0 , & len ) ;
file = COM_ParseFileSafe ( file , buf , sizeof ( buf ) , 0 , & len , NULL ) ;
TASSERT ( ! Q_strcmp ( buf , " asdf " ) & & len = = 4 ) ;
file = _ COM_ParseFileSafe( file , buf , sizeof ( buf ) , 0 , & len ) ;
file = COM_ParseFileSafe ( file , buf , sizeof ( buf ) , 0 , & len , NULL ) ;
TASSERT ( ! Q_strcmp ( buf , " qwer " ) & & len = = - 1 ) ;
file = _ COM_ParseFileSafe( file , buf , sizeof ( buf ) , 0 , & len ) ;
file = COM_ParseFileSafe ( file , buf , sizeof ( buf ) , 0 , & len , NULL ) ;
TASSERT ( ! Q_strcmp ( buf , " f \" f " ) & & len = = 4 ) ;
file = _ COM_ParseFileSafe( file , buf , sizeof ( buf ) , 0 , & len ) ;
file = COM_ParseFileSafe ( file , buf , sizeof ( buf ) , 0 , & len , NULL ) ;
TASSERT ( ! Q_strcmp ( buf , " meow " ) & & len = = - 1 ) ;
file = _ COM_ParseFileSafe( file , buf , sizeof ( buf ) , 0 , & len ) ;
file = COM_ParseFileSafe ( file , buf , sizeof ( buf ) , 0 , & len , NULL ) ;
TASSERT ( ! Q_strcmp ( buf , " bark " ) & & len = = 4 ) ;
}
# endif