summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-10-08 10:22:30 +0000
committermichelou <michelou@epfl.ch>2007-10-08 10:22:30 +0000
commit9ce1dd8d50095a64a68bc86d5f5a856209eaf1f2 (patch)
tree0d1d3d325247ccb677f294a46db8ffcfe6b36395 /test
parent4f2d5e48086568a905b1eb318700ef4fb6dad1df (diff)
downloadscala-9ce1dd8d50095a64a68bc86d5f5a856209eaf1f2.tar.gz
scala-9ce1dd8d50095a64a68bc86d5f5a856209eaf1f2.tar.bz2
scala-9ce1dd8d50095a64a68bc86d5f5a856209eaf1f2.zip
added length test to run/stream.scala
Diffstat (limited to 'test')
-rw-r--r--test/files/run/streams.check1
-rw-r--r--test/files/run/streams.scala5
-rwxr-xr-xtest/scalatest3
3 files changed, 7 insertions, 2 deletions
diff --git a/test/files/run/streams.check b/test/files/run/streams.check
index d11eb7f67a..f36b719ac1 100644
--- a/test/files/run/streams.check
+++ b/test/files/run/streams.check
@@ -15,4 +15,5 @@ Stream()
Stream(1, 2)
Stream()
+99999
65536
diff --git a/test/files/run/streams.scala b/test/files/run/streams.scala
index 408affe306..1844fdb6ab 100644
--- a/test/files/run/streams.scala
+++ b/test/files/run/streams.scala
@@ -22,8 +22,11 @@ object Test extends Application {
println(s2.dropWhile(_ > 0))
println
+ val s3 = Stream.range(1, 100000)
+ println(s3.length)
+
// ticket #153
def powers(x: Int) = if ((x&(x-1)) == 0) Some(x) else None
- val s3 = Stream.range(1, 100000)
println(s3.flatMap(powers).reverse.head)
+
}
diff --git a/test/scalatest b/test/scalatest
index c12a3ec1c9..a340e49b88 100755
--- a/test/scalatest
+++ b/test/scalatest
@@ -742,7 +742,8 @@ if [ "$USEFSC" = "true" ]; then
else
SCALAC_CMD="${BIN_DIR}scalac";
fi;
-if [ ! -x "$SCALAC_CMD" ]; then
+
+if [ ! -x `which $SCALAC_CMD` ]; then
printf_failure "Missing command \"$SCALAC_CMD\"; run 'ant <target>'.\\n";
exit 1;
fi;