1
0
Fork 0

Print out random seed if test fails

This commit is contained in:
Andrew Waterman 2014-03-17 15:35:17 -07:00
parent fcbbb275aa
commit 7f23257873
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ int main(int argc, char** argv)
if (htif->exit_code())
{
fprintf(stderr, "*** FAILED *** (code = %d) after %lld cycles\n", htif->exit_code(), (long long)trace_count);
fprintf(stderr, "*** FAILED *** (code = %d, seed %d) after %lld cycles\n", htif->exit_code(), random_seed, (long long)trace_count);
ret = htif->exit_code();
}
else if (trace_count == max_cycles)