Skip to content
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
Some useful changes from Contest 2023 that were missed in UnitTestBot…
… main branch
  • Loading branch information
EgorkaKulikov committed Nov 7, 2023
commit 4e1207593835201713c7abe2a771e31ffcc22219
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