aboutsummaryrefslogtreecommitdiff
path: root/test/dotc/tests.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2014-02-06 13:36:42 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2014-02-06 13:36:42 +0100
commit0ab219259627d589f5f2bc407b90575977541865 (patch)
tree8fb790446eb6312b166e6db6fb937ba627fdf22e /test/dotc/tests.scala
parent4e34962fba727975c071d6288913d89b4692a08f (diff)
downloaddotty-0ab219259627d589f5f2bc407b90575977541865.tar.gz
dotty-0ab219259627d589f5f2bc407b90575977541865.tar.bz2
dotty-0ab219259627d589f5f2bc407b90575977541865.zip
Use relative paths in tests
Diffstat (limited to 'test/dotc/tests.scala')
-rw-r--r--test/dotc/tests.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/dotc/tests.scala b/test/dotc/tests.scala
index c32492778..550d1c585 100644
--- a/test/dotc/tests.scala
+++ b/test/dotc/tests.scala
@@ -14,9 +14,9 @@ class tests extends CompilerTest {
// "-Yshow-suppressed-errors",
"-pagewidth", "160")
- val posDir = "/Users/odersky/workspace/dotty/tests/pos/"
- val negDir = "/Users/odersky/workspace/dotty/tests/neg/"
- val dotcDir = "/Users/odersky/workspace/dotty/src/dotty/"
+ val posDir = "./tests/pos/"
+ val negDir = "./tests/neg/"
+ val dotcDir = "./src/dotty/"
@Test def pos_Coder() = compileFile(posDir, "Coder")
@Test def pos_blockescapes() = compileFile(posDir, "blockescapes")
@@ -67,4 +67,4 @@ class tests extends CompilerTest {
"-Xprompt"))
//@Test def dotc_compilercommand = compileFile(dotcDir + "tools/dotc/config/", "CompilerCommand")
-} \ No newline at end of file
+}