浏览代码

Merge pull request #602 from Dmitry-Me/testWithStopwatchOff

Stopwatch must be stopped before test check
Lee Thomason 8 年之前
父节点
当前提交
30dec75919
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;