Author: gedmurphy
Date: Fri Dec 4 16:22:13 2009
New Revision: 44404
URL:
http://svn.reactos.org/svn/reactos?rev=44404&view=rev
Log:
Remove perf test code I accidentally committed
Modified:
trunk/reactos/tools/rbuild/rbuild.cpp
Modified: trunk/reactos/tools/rbuild/rbuild.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/rbuild.cpp?re…
==============================================================================
--- trunk/reactos/tools/rbuild/rbuild.cpp [iso-8859-1] (original)
+++ trunk/reactos/tools/rbuild/rbuild.cpp [iso-8859-1] Fri Dec 4 16:22:13 2009
@@ -388,8 +388,6 @@
if ( RootXmlFile.length () == 0 )
throw MissingArgumentException ( "-r" );
- DWORD start = GetTickCount();
-
string projectFilename ( RootXmlFile );
printf ( "Reading build files..." );
@@ -404,9 +402,6 @@
project.ExecuteInvocations ();
project.GetBackend().Process();
- DWORD end = GetTickCount();
- printf("time - %lu.%d\n", (end - start) / 1000, (end - start) % 1000);
-
return 0;
}
catch ( Exception& ex )