Fixing execution key generation based on CR.

This commit is contained in:
Markus Kauppila 2011-08-02 12:46:40 +03:00
parent 1633238f90
commit c2b70264ed
12 changed files with 86 additions and 59 deletions

View file

@ -119,9 +119,9 @@ PlainSuiteEnded(int testsPassed, int testsFailed, int testsSkipped,
void
PlainTestStarted(const char *testName, const char *suiteName,
const char *testDescription, int execKey, time_t startTime)
const char *testDescription, Uint64 execKey, time_t startTime)
{
Output(indentLevel++, "Executing test: %s (in %s). Exec key: %X", testName, suiteName, execKey);
Output(indentLevel++, "Executing test: %s (in %s). Exec key: %llX", testName, suiteName, execKey);
}
void