mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
50 lines
808 B
C++
50 lines
808 B
C++
|
#include "nspr.h"
|
||
|
#include "TestySupport.h"
|
||
|
|
||
|
FILE* gLogFile = NULL;
|
||
|
|
||
|
int Testy_LogInit(const char* fileName)
|
||
|
{
|
||
|
gLogFile = fopen(fileName, "w+b");
|
||
|
if (!gLogFile) return -1;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void Testy_LogShutdown()
|
||
|
{
|
||
|
if (gLogFile)
|
||
|
fclose(gLogFile);
|
||
|
}
|
||
|
|
||
|
|
||
|
void Testy_LogStart(const char* name)
|
||
|
{
|
||
|
PR_ASSERT(gLogFile);
|
||
|
fprintf(gLogFile, "Test Case: %s", name);
|
||
|
fflush(gLogFile);
|
||
|
}
|
||
|
|
||
|
void Testy_LogComment(const char* name, const char* comment)
|
||
|
{
|
||
|
PR_ASSERT(gLogFile);
|
||
|
fprintf(gLogFile, "Test Case: %s\n\t%s", name, comment);
|
||
|
fflush(gLogFile);
|
||
|
}
|
||
|
|
||
|
void Testy_LogEnd(const char* name, PRBool passed)
|
||
|
{
|
||
|
PR_ASSERT(gLogFile);
|
||
|
fprintf(gLogFile, "Test Case: %s (%s)", name, passed ? "Passed" : "Failed");
|
||
|
fflush(gLogFile);
|
||
|
}
|
||
|
|
||
|
void Testy_GenericStartup()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void Testy_GenericShutdown()
|
||
|
{
|
||
|
|
||
|
}
|