aboutsummaryrefslogtreecommitdiff
path: root/sbt-bridge/src/sbt-test/source-dependencies/abstract-type-override/test
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-11-17 11:51:08 +0100
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:07 +0100
commit6acdc1e85f04cc3a240ddb91983588897786d8ca (patch)
treea86262ad133d0dc3af19919cdc6ff77d1044003a /sbt-bridge/src/sbt-test/source-dependencies/abstract-type-override/test
parentc061baf8c4a81f2b1505c30a5240857411981f62 (diff)
downloaddotty-6acdc1e85f04cc3a240ddb91983588897786d8ca.tar.gz
dotty-6acdc1e85f04cc3a240ddb91983588897786d8ca.tar.bz2
dotty-6acdc1e85f04cc3a240ddb91983588897786d8ca.zip
Move bridge to correct location, fix unmanaged sources in build
Diffstat (limited to 'sbt-bridge/src/sbt-test/source-dependencies/abstract-type-override/test')
-rw-r--r--sbt-bridge/src/sbt-test/source-dependencies/abstract-type-override/test14
1 files changed, 14 insertions, 0 deletions
diff --git a/sbt-bridge/src/sbt-test/source-dependencies/abstract-type-override/test b/sbt-bridge/src/sbt-test/source-dependencies/abstract-type-override/test
new file mode 100644
index 000000000..b0bec415e
--- /dev/null
+++ b/sbt-bridge/src/sbt-test/source-dependencies/abstract-type-override/test
@@ -0,0 +1,14 @@
+# Test for separate compilation and proper value of
+# the OVERRIDE flag when abstract types, type alias
+# and structural type are involved
+# See https://github.com/sbt/sbt/issues/726 for details
+
+# introduces first compile iteration
+> compile
+# this change adds a comment and does not change api so introduces
+# only one additional compile iteration
+$ copy-file changes/Bar1.scala src/main/scala/Bar.scala
+# second iteration
+#> compile
+# check if there are only two compile iterations performed
+> check-number-of-compiler-iterations 2