Explorar el Código

Merge pull request #602 from Dmitry-Me/testWithStopwatchOff

Stopwatch must be stopped before test check
Lee Thomason hace 8 años
padre
commit
30dec75919
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      xmltest.cpp

+ 1 - 1
xmltest.cpp

@@ -2157,12 +2157,12 @@ int main( int argc, const char ** argv )
 			doc.Parse(mem);
 			parseDreamXmlFailed = parseDreamXmlFailed || doc.Error();
 		}
-		XMLTest( "Parse dream.xml", false, parseDreamXmlFailed );
 #if defined( _MSC_VER )
 		QueryPerformanceCounter((LARGE_INTEGER*)&end);
 #else
 		clock_t cend = clock();
 #endif
+		XMLTest( "Parse dream.xml", false, parseDreamXmlFailed );
 
 		delete[] mem;