summaryrefslogtreecommitdiff
path: root/test/files/presentation
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2016-01-15 19:00:59 -0500
committerSeth Tisue <seth@tisue.net>2016-01-15 19:00:59 -0500
commit8e52acdc1bdc74375cf6a23e9ff929690317c3c7 (patch)
tree8bd886afbbe67130db33cd0728035733ffbfd021 /test/files/presentation
parentf6bd7123fcce1bd72f141a8a0f95559c12bb5dd2 (diff)
downloadscala-8e52acdc1bdc74375cf6a23e9ff929690317c3c7.tar.gz
scala-8e52acdc1bdc74375cf6a23e9ff929690317c3c7.tar.bz2
scala-8e52acdc1bdc74375cf6a23e9ff929690317c3c7.zip
disable flaky presentation compiler test on Windows
see https://github.com/scala/scala-dev/issues/72 for details
Diffstat (limited to 'test/files/presentation')
-rw-r--r--test/files/presentation/doc/doc.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/presentation/doc/doc.scala b/test/files/presentation/doc/doc.scala
index f2233f1828..ce431910ee 100644
--- a/test/files/presentation/doc/doc.scala
+++ b/test/files/presentation/doc/doc.scala
@@ -118,6 +118,12 @@ object Test extends InteractiveTest {
}
}
+ // The remainder of this test has been found to fail intermittently on Windows
+ // only. The problem is difficult to isolate and reproduce; see
+ // https://github.com/scala/scala-dev/issues/72 for details.
+ // So if we're on Windows, let's just bail out here.
+ if (scala.util.Properties.isWin) return
+
// Check inter-classes documentation one-time retrieved ok.
val baseSource = findSource("Base.scala")
val derivedSource = findSource("Derived.scala")