Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Setup 222 versions for IntelliJ and plugins
Fix wrong import
Add try/catch temporary wrapping to obtain stacktrace
Update soot version (commit hash)
Get rid of commented lines, better logging added
  • Loading branch information
Vassiliy-Kudryashov committed Oct 5, 2022
commit 2e95dde10f7e4cf47729d61cb6f6dff58936f38b
2 changes: 0 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@ kotlin.code.style=official
# IU, IC, PC, PY, WS...
ideType=IC

#pythonCommunityPluginVersion=212.5457.59
pythonCommunityPluginVersion=222.4167.37
#Version numbers: https://plugins.jetbrains.com/plugin/631-python/versions
#pythonUltimatePluginVersion=212.5457.59
pythonUltimatePluginVersion=222.4167.37

junit5Version=5.8.0-RC1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ open class TestCaseGenerator(
engineActions.clear()
return defaultTestFlow(engine, executionTimeEstimator.userTimeout)
} catch (e: Exception) {
e.printStackTrace()
logger.error(e) {"Generate async failed"}
throw e
}
}
Expand Down Expand Up @@ -185,7 +185,7 @@ open class TestCaseGenerator(
}
}
} catch (e: Exception) {
e.printStackTrace()
logger.error(e) {"Error in engine"}
}
}
controller.paused = true
Expand Down
2 changes: 0 additions & 2 deletions utbot-intellij/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ intellij {

val jvmPlugins = listOf(
"java",
// "org.jetbrains.kotlin:212-1.7.10-release-333-IJ5457.46"
"org.jetbrains.kotlin:222-1.7.20-release-201-IJ4167.29"
)

Expand All @@ -42,7 +41,6 @@ intellij {
}
)

// version.set("212.5712.43")
version.set("222.4167.29")
type.set(ideType)
}
Expand Down