summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-14 04:05:07 +0000
committerPaul Phillips <paulp@improving.org>2011-03-14 04:05:07 +0000
commit1f3c58a818feb7c2887ceebb079ce992aa677c0d (patch)
treecf84ba7c726a97ab7b03e504ac13a687765d3f9f /test/files
parentee4cc17eb7f75361c2395e8f38716de14e223b87 (diff)
downloadscala-1f3c58a818feb7c2887ceebb079ce992aa677c0d.tar.gz
scala-1f3c58a818feb7c2887ceebb079ce992aa677c0d.tar.bz2
scala-1f3c58a818feb7c2887ceebb079ce992aa677c0d.zip
Raised the threshold for the test looking at vi...
Raised the threshold for the test looking at view performance. I guess if views are only 50x as slow on windows that's still a lot better than 100,000. (The real issue is more like "it's windows" plus "it's windows running on virtualbox".) No review.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/bug4279.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/bug4279.scala b/test/files/run/bug4279.scala
index 3ca74dbbf3..23eb7953d5 100644
--- a/test/files/run/bug4279.scala
+++ b/test/files/run/bug4279.scala
@@ -32,7 +32,7 @@ object Test {
// warmup
{ val r = new Runner(1000000, 10) ; r.straightSlice ; r.iteratorSlice ; r.viewSlice }
- new Runner(10000000, 10) run 10
- new Runner(10000000, 50) run 10
+ new Runner(10000000, 10) run 50
+ new Runner(10000000, 50) run 50
}
}