only:simulatorFunctionalTestLauncherAssumungSimulatorWasStartedExternally

This commit is contained in:
rusefillc 2023-10-16 15:09:33 -04:00
parent 1eacdbd025
commit a08ae11819
1 changed files with 8 additions and 0 deletions

View File

@ -16,4 +16,12 @@ task simulatorFunctionalTestLauncherWithSimulator(type: Exec) {
description = "Run the main class with ExecTask"
workingDir = rootProject.projectDir
commandLine "java", "-classpath", sourceSets.main.runtimeClasspath.getAsPath(), "com.rusefi.SimulatorFunctionalTestLauncher", "start"
}
task simulatorFunctionalTestLauncherAssumungSimulatorWasStartedExternally(type: Exec) {
dependsOn build
group = "Execution"
description = "Run the main class with ExecTask"
workingDir = rootProject.projectDir
commandLine "java", "-classpath", sourceSets.main.runtimeClasspath.getAsPath(), "com.rusefi.SimulatorFunctionalTestLauncher"
}