1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 10:46:02 +02:00

Added command line version of ScannerSpeedTest to check for aprof.

This commit is contained in:
Doug Schaefer 2004-06-14 15:12:11 +00:00
parent 41db303fbf
commit 008ca93b73

View file

@ -29,6 +29,13 @@ public class ScannerSpeedTest extends SpeedTest {
private static final ISourceElementRequestor CALLBACK = new NullSourceElementRequestor();
public static void main(String[] args) {
try {
new ScannerSpeedTest().runTest(1);
} catch (Exception e) {
System.out.println(e);
}
}
public void test() throws Exception {
runTest(10);
}