Skip to content

Commit

Permalink
Some useful changes from Contest 2023 that were missed in UnitTestBot…
Browse files Browse the repository at this point in the history
… main branch (#2675)
  • Loading branch information
EgorkaKulikov authored Nov 7, 2023
1 parent 6276993 commit 921b69a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit 921b69a

Please sign in to comment.