mirror of https://github.com/sbt/sbt.git
[2.x] test: Enable run/fork-loader scripted test (#9199)
This commit is contained in:
parent
59c007d6a4
commit
76992ed3f6
|
|
@ -6,5 +6,6 @@ lazy val root = (project in file("."))
|
|||
.settings(
|
||||
name := "forked-test",
|
||||
organization := "org.example",
|
||||
Test / classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Raw,
|
||||
libraryDependencies += scalacheck % Test
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# This test verifies that the forked code is loaded in the application class loader.
|
||||
-> run
|
||||
-> test
|
||||
-> testFull
|
||||
> set fork := true
|
||||
> run
|
||||
> test
|
||||
> testFull
|
||||
Loading…
Reference in New Issue