Remove perf test code I accidentally committed
[reactos.git] / reactos / tools / rbuild / rbuild.cpp
index 6381c7a..1119f22 100644 (file)
@@ -388,8 +388,6 @@ main ( int argc, char** argv )
                if ( RootXmlFile.length () == 0 )
                        throw MissingArgumentException ( "-r" );
 
-               DWORD start = GetTickCount();
-
                string projectFilename ( RootXmlFile );
 
                printf ( "Reading build files..." );
@@ -404,9 +402,6 @@ main ( int argc, char** argv )
                project.ExecuteInvocations ();
                project.GetBackend().Process();
 
-               DWORD end = GetTickCount();
-               printf("time - %lu.%d\n", (end - start) / 1000, (end - start) % 1000);
-
                return 0;
        }
        catch ( Exception& ex )