Tests: another attempt to quit with a fatal error

This commit is contained in:
Fletcher Dunn
2026-04-25 14:34:28 -07:00
parent 82557feb2d
commit 8bfa71b558
+3 -3
View File
@@ -57,9 +57,9 @@ static void DebugOutput( ESteamNetworkingSocketsDebugOutputType eType, const cha
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"
"!! TEST FAILED !!\n"
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"
"\n", pszMsg );
);
fflush( stderr );
abort();
_exit(1);
}
}
@@ -85,7 +85,7 @@ void TEST_Fatal( const char *fmt, ... )
va_end(ap);
fputc('\n', stderr);
fflush(stderr);
exit(1);
_exit(1);
}
void TEST_InitLog( const char *pszFilename )