summaryrefslogtreecommitdiff
path: root/test/files/run/boolexprs.scala
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2005-09-27 08:24:43 +0000
committermihaylov <mihaylov@epfl.ch>2005-09-27 08:24:43 +0000
commitff21a4fbafeb04afbd4dade2a217a4de2ab034f9 (patch)
tree6ed4066269260129cb3085deded9374f8b1f6b9d /test/files/run/boolexprs.scala
parent5f6f5f723b884cd41d1233340590e2bf95d90588 (diff)
downloadscala-ff21a4fbafeb04afbd4dade2a217a4de2ab034f9.tar.gz
scala-ff21a4fbafeb04afbd4dade2a217a4de2ab034f9.tar.bz2
scala-ff21a4fbafeb04afbd4dade2a217a4de2ab034f9.zip
Made platform independant
Diffstat (limited to 'test/files/run/boolexprs.scala')
-rw-r--r--test/files/run/boolexprs.scala14
1 files changed, 6 insertions, 8 deletions
diff --git a/test/files/run/boolexprs.scala b/test/files/run/boolexprs.scala
index b5bc5f7787..7080f84b56 100644
--- a/test/files/run/boolexprs.scala
+++ b/test/files/run/boolexprs.scala
@@ -34,29 +34,27 @@ object Test2 {
// Test code
object Test {
- import java.lang.System;
-
def check_success(name: String, closure: => Int, expected: Int): Unit = {
- System.out.print("test " + name);
+ Console.print("test " + name);
try {
val actual: Int = closure;
if (actual == expected) {
- System.out.print(" was successful");
+ Console.print(" was successful");
} else {
- System.out.print(" failed: expected "+ expected +", found "+ actual);
+ Console.print(" failed: expected "+ expected +", found "+ actual);
}
} catch {
case exception: Throwable => {
- System.out.print(" raised exception " + exception);
+ Console.print(" raised exception " + exception);
}
}
- System.out.println();
+ Console.println;
}
def main(args: Array[String]): Unit = {
check_success("Test1", Test1.run, 1);
check_success("Test2", Test2.run, 0);
- System.out.println();
+ Console.println;
}
}