better ant task name

This commit is contained in:
rusefillc 2020-12-12 16:14:21 -05:00
parent f55b975b3e
commit 87173c6f13
2 changed files with 2 additions and 3 deletions

View File

@ -180,8 +180,7 @@
</target>
<!--todo: rename this task to something more specific like RunRealHardwareTestSuite & sync Jenkins instances-->
<target name="realtest" depends="jar">
<target name="real_hardware_functional_test" depends="jar">
<java classpath="${jar_file}" classname="com.rusefi.RealHwTest" failonerror="true">
</java>
</target>

View File

@ -28,7 +28,7 @@ cd java_console
echo "Running tests"
which java
which javac
ant realtest
ant real_hardware_functional_test
[ $? -eq 0 ] || { echo "ERROR DETECTED"; exit 1; }