This PR sets up the new integrated test/bench suite. It then migrates all benchmarks and some related tests to the new suite. There's also some documentation and some linting. For now, a lot of the old tests are left alone so this PR doesn't become even larger than it already is. Eventually, all tests should be migrated to the new suite though so there isn't a confusing mix of two systems.
9 lines
280 B
Text
9 lines
280 B
Text
[Compiler.IR] [result]
|
|
def test2 (x_1 : u32) (x_2 : void) : obj :=
|
|
let x_3 : obj := foo x_1 ◾;
|
|
ret x_3
|
|
def test2._boxed (x_1 : tobj) (x_2 : tagged) : obj :=
|
|
let x_3 : u32 := unbox x_1;
|
|
dec x_1;
|
|
let x_4 : obj := test2 x_3 x_2;
|
|
ret x_4
|