Browse Source

Removed system-specific code.

release/0.19
JustinAJ 10 years ago
parent
commit
e289f09d5a
  1. 5
      Tester/Test.cpp

5
Tester/Test.cpp

@ -24,8 +24,7 @@ int main()
{ {
if (goodTests == totalTests) printf("All %u tests succeeded." ENDL, totalTests); if (goodTests == totalTests) printf("All %u tests succeeded." ENDL, totalTests);
else printf("ERROR: Only %u/%u tests succeeded. %u tests failed." ENDL, goodTests, totalTests, totalTests - goodTests); else printf("ERROR: Only %u/%u tests succeeded. %u tests failed." ENDL, goodTests, totalTests, totalTests - goodTests);
#if defined _WIN32 puts("Press any key to continue...");
system("pause"); fgetc(stdin);
#endif // _WIN32
return 0; return 0;
} }
Loading…
Cancel
Save