rubyx/test/compiler/test_hello.rb

40 lines
733 B
Ruby
Raw Normal View History

2015-07-19 09:54:36 +02:00
require_relative "compiler_helper"
class HelloTest < MiniTest::Test
def check
2015-07-19 10:52:43 +02:00
machine = Virtual.machine.boot
expressions = machine.compile_main @string_input
2015-06-22 21:48:42 +02:00
output_at = "Register::CallImplementation"
2015-06-20 23:21:42 +02:00
#{}"Register::CallImplementation"
machine.run_before output_at
2015-06-30 09:22:54 +02:00
#puts Sof.write(machine.space)
2015-06-20 23:21:42 +02:00
machine.run_after output_at
writer = Elf::ObjectWriter.new(machine)
2014-08-30 13:17:00 +02:00
writer.save "hello.o"
end
2014-08-22 08:21:59 +02:00
def qtest_simplest_function
@string_input = <<HERE
def foo(x)
5
end
HERE
check
end
2015-07-02 08:49:52 +02:00
def ttest_puts_string
@string_input = <<HERE
2015-05-30 13:49:10 +02:00
putstring("Hello")
HERE
check
end
2015-07-02 08:49:52 +02:00
def test_string_put
@string_input = <<HERE
2015-07-02 12:49:33 +02:00
"Hello again\n".putstring()
HERE
check
end
end