From 9218e679717193c08f41c07f46503062f78cf278 Mon Sep 17 00:00:00 2001 From: "jean.chalard" Date: Sun, 20 Jun 2010 04:23:26 +0000 Subject: [PATCH] J : * Add the name of the current test to the display, to ease finding which test is currently crashing. --- projects/mtg/src/TestSuiteAI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/mtg/src/TestSuiteAI.cpp b/projects/mtg/src/TestSuiteAI.cpp index 6f7684753..7c4cb0448 100644 --- a/projects/mtg/src/TestSuiteAI.cpp +++ b/projects/mtg/src/TestSuiteAI.cpp @@ -437,7 +437,7 @@ int TestSuite::loadNext(){ if (currentfile >= nbfiles) return 0; currentfile++; if (!load(files[currentfile-1].c_str())) return loadNext(); - + else cout << "Starting test : " << files[currentfile-1] << endl; //load(files[currentfile].c_str()); //currentfile++; return currentfile;