File tree 2 files changed +3
-1
lines changed 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,15 @@ pipeline:
14
14
commands :
15
15
- cp -R . /tmp/1/ && cd /tmp/1/
16
16
- ./project/scripts/sbt test
17
+ - ./project/scripts/sbt ";dotty-bench/jmh:run 1 1 tests/run/arrays.scala"
17
18
18
19
test_bootstrapped :
19
20
group : test
20
21
image : lampepfl/dotty:2017-09-08
21
22
commands :
22
23
- cp -R . /tmp/2/ && cd /tmp/2/
23
24
- ./project/scripts/sbt dotty-bootstrapped/test
25
+ - ./project/scripts/sbt ";dotty-bench-bootstrapped/jmh:run 1 1 tests/run/arrays.scala"
24
26
25
27
test_optimised :
26
28
group : test
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ object Bench {
25
25
val (intArgs, args1) = args.span(x => try { x.toInt; true } catch { case _ : Throwable => false } )
26
26
27
27
val warmup = if (intArgs.length > 0 ) intArgs(0 ).toInt else 30
28
- val iteration warmup = if (intArgs.length > 1 ) intArgs(1 ).toInt else 20
28
+ val iterations = if (intArgs.length > 1 ) intArgs(1 ).toInt else 20
29
29
30
30
val args2 = args1.map { arg =>
31
31
if ((arg.endsWith(" .scala" ) || arg.endsWith(" .java" )) && arg.head != '/' ) " ../" + arg
You can’t perform that action at this time.
0 commit comments