@@ -26,7 +26,7 @@ class VulpixUnitTests extends ParallelTesting {
2626 // To fail with something else than an AssertionError
2727 def fail (): Unit = throw new Exception (" didn't fail properly" )
2828
29- @ Test def missingFile : Unit =
29+ @ Test def missingFile : Unit = if ( ! scala.util. Properties .isWin)
3030 try {
3131 compileFile(" tests/vulpix-tests/unit/i-dont-exist.scala" , defaultOptions).expectFailure.checkExpectedErrors()
3232 fail()
@@ -64,9 +64,8 @@ class VulpixUnitTests extends ParallelTesting {
6464 @ Test def runDiffOutput1 : Unit =
6565 compileFile(" tests/vulpix-tests/unit/runDiffOutput1.scala" , defaultOptions).expectFailure.checkRuns()
6666
67- @ Test def runStackOverflow : Unit =
68- if (! scala.util.Properties .isWin)
69- compileFile(" tests/vulpix-tests/unit/stackOverflow.scala" , defaultOptions).expectFailure.checkRuns()
67+ @ Test def runStackOverflow : Unit = if (! scala.util.Properties .isWin)
68+ compileFile(" tests/vulpix-tests/unit/stackOverflow.scala" , defaultOptions).expectFailure.checkRuns()
7069
7170 @ Test def runOutRedirects : Unit =
7271 compileFile(" tests/vulpix-tests/unit/i2147.scala" , defaultOptions).expectFailure.checkRuns()
@@ -83,7 +82,7 @@ class VulpixUnitTests extends ParallelTesting {
8382 @ Test def deadlock : Unit =
8483 compileFile(" tests/vulpix-tests/unit/deadlock.scala" , defaultOptions).expectFailure.checkRuns()
8584
86- @ Test def badJava : Unit =
85+ @ Test def badJava : Unit = if ( ! scala.util. Properties .isWin)
8786 try {
8887 compileFile(" tests/vulpix-tests/unit/BadJava.java" , defaultOptions).suppressAllOutput.checkCompile()
8988 fail()
0 commit comments