Skip to content

Some useful changes from Contest 2023 that were missed in UnitTestBot main branch #2675

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions utbot-junit-contest/runtool
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash

# switch to environment JVM as needed
JAVA_HOME=/usr
JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64

APACHE_EXECS_LIB=lib/org/apache/commons/commons-exec/1.2/commons-exec-1.2.jar
TOOL=lib/runtool-1.0.0.jar
TOOL=lib/utbot-junit-contest-1.0.jar

export UTBOT_EXTRA_PARAMS=-Xmx4g
export JAVA_HOME=$JAVA_HOME
$JAVA_HOME/bin/java -cp $TOOL:$APACHE_EXECS_LIB sbst.runtool.Main
$JAVA_HOME/bin/java -cp $TOOL sbst.runtool.Main
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import sbst.runtool.ITestingTool
class UtBotTool2 : ITestingTool {

override fun getExtraClassPath(): List<File> {
return mutableListOf()
return mutableListOf(File("lib", "mockito-core-4.11.0.jar"))
}

lateinit var sootClasspathString: String
Expand Down