Skip to content

Commit d4d685b

Browse files
committed
restore pipelining tests on windows
1 parent 0d004ab commit d4d685b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/tasty/test/scala/tools/tastytest/TastyTestJUnit.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@ package scala.tools.tastytest
22

33
import org.junit.{Test => test, BeforeClass => setup, AfterClass => teardown}
44
import org.junit.Assert._
5-
import org.junit.Assume._
65

76
import scala.util.{Try, Failure, Properties}
87

98
import TastyTestJUnit._
109

1110
class TastyTestJUnit {
12-
val isWindows = Properties.isWin
1311

1412
@test def run(): Unit = TastyTest.runSuite(
1513
src = "run",
@@ -21,7 +19,6 @@ class TastyTestJUnit {
2119
).eval()
2220

2321
@test def runPipelined(): Unit = {
24-
assumeFalse("Disabled on Windows due to bug in jar format", isWindows)
2522
TastyTest.runPipelinedSuite(
2623
src = "run-pipelined",
2724
srcRoot = assertPropIsSet(propSrc),
@@ -70,7 +67,6 @@ class TastyTestJUnit {
7067
).eval()
7168

7269
@test def negPipelined(): Unit = {
73-
assumeFalse("Disabled on Windows due to bug in jar format", isWindows)
7470
TastyTest.negPipelinedSuite(
7571
src = "neg-pipelined",
7672
srcRoot = assertPropIsSet(propSrc),

0 commit comments

Comments
 (0)