From 90801e779787a14a72e51abcd1822c59a56f053e Mon Sep 17 00:00:00 2001 From: rusEfi Date: Wed, 25 Feb 2015 21:04:41 -0600 Subject: [PATCH] auto-sync --- java_console/autotest/src/com/rusefi/EnduranceTest.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/java_console/autotest/src/com/rusefi/EnduranceTest.java b/java_console/autotest/src/com/rusefi/EnduranceTest.java index 473b81cd83..67acfacf6e 100644 --- a/java_console/autotest/src/com/rusefi/EnduranceTest.java +++ b/java_console/autotest/src/com/rusefi/EnduranceTest.java @@ -6,10 +6,11 @@ import static com.rusefi.RealHwTest.startRealHardwareTest; public class EnduranceTest { - private static final int COUNT = 200; + private static final int COUNT = 2000; public static void main(String[] args) { long start = System.currentTimeMillis(); + FileLog.MAIN.logLine("Running " + COUNT + " cycles"); try { String port = startRealHardwareTest(args); @@ -36,6 +37,8 @@ public class EnduranceTest { FileLog.MAIN.logLine("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"); FileLog.MAIN.logLine("++++++++++++++++++++++++++++++++++++ YES YES YES " + COUNT + " +++++++++++++++"); FileLog.MAIN.logLine("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"); - FileLog.MAIN.logLine("In " + (System.currentTimeMillis() - start) + "ms"); + long totalTime = System.currentTimeMillis() - start; + long minutes = totalTime / 1000 / 60; + FileLog.MAIN.logLine("In " + minutes + " minutes"); } } \ No newline at end of file