2015-11-21 15:33:43 +01:00
|
|
|
require_relative '../../soml/helper'
|
|
|
|
|
|
|
|
# Benchmarks for the stuff in results.md
|
|
|
|
|
|
|
|
module BenchTests
|
|
|
|
|
|
|
|
include RuntimeTests
|
|
|
|
|
|
|
|
def setup
|
|
|
|
@stdout = ""
|
|
|
|
@machine = Register.machine.boot
|
2016-12-08 14:25:20 +01:00
|
|
|
Typed::Compiler.load_parfait
|
2015-11-21 15:33:43 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def main
|
|
|
|
runko = <<HERE
|
|
|
|
class Object
|
|
|
|
int main()
|
|
|
|
PROGRAM
|
|
|
|
end
|
|
|
|
end
|
|
|
|
HERE
|
|
|
|
runko.sub("PROGRAM" , @main )
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_remote val
|
|
|
|
check_r val , true
|
|
|
|
end
|
2015-11-30 15:09:55 +01:00
|
|
|
|
|
|
|
def connected
|
|
|
|
make_box
|
|
|
|
end
|
2015-11-21 15:33:43 +01:00
|
|
|
end
|