X-Git-Url: http://nitlanguage.org diff --git a/tests/bench_send2.nit b/tests/bench_send2.nit index cf863b8..6e70969 100644 --- a/tests/bench_send2.nit +++ b/tests/bench_send2.nit @@ -18,41 +18,45 @@ redef class Object fun foo do end end class A - redef fun foo do end + redef fun foo do i += 1 end init do end + var i = 0 end class B -special A + super A redef fun foo do end init do end end class C -special A + super A init do end end class D -special B -special C + super B + super C init do end end class E -special B -special C + super B + super C redef fun foo do end init do end end class F -special D -special E + super D + super E redef fun foo do end init do end end +var n = 10 +if args.not_empty then n = args.first.to_i + var nb = 60 var a = new Array[Object].with_capacity(nb) for i in [0..(nb/6)[ do @@ -63,9 +67,12 @@ for i in [0..(nb/6)[ do a[i*6+4] = new E a[i*6+5] = new F end -for i in [0..1000000[ do +for i in [0..1 << n[ do for j in [0..nb[ do a[j].foo end end +for j in [0..nb[ do + print a[j].as(A).i +end