2015-07-19 09:54:36 +02:00
|
|
|
require_relative "compiler_helper"
|
2014-08-21 21:57:20 +02:00
|
|
|
|
|
|
|
class HelloTest < MiniTest::Test
|
2015-05-16 11:53:10 +02:00
|
|
|
|
2014-08-21 21:57:20 +02:00
|
|
|
def check
|
2015-07-19 10:52:43 +02:00
|
|
|
machine = Virtual.machine.boot
|
2014-08-21 21:57:20 +02:00
|
|
|
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
|
2015-05-16 11:53:10 +02:00
|
|
|
writer = Elf::ObjectWriter.new(machine)
|
2014-08-30 13:17:00 +02:00
|
|
|
writer.save "hello.o"
|
2014-08-21 21:57:20 +02:00
|
|
|
end
|
|
|
|
|
2014-08-22 08:21:59 +02:00
|
|
|
def qtest_simplest_function
|
2014-08-21 21:57:20 +02:00
|
|
|
@string_input = <<HERE
|
2015-05-16 11:53:10 +02:00
|
|
|
def foo(x)
|
2014-08-21 21:57:20 +02:00
|
|
|
5
|
|
|
|
end
|
|
|
|
HERE
|
|
|
|
check
|
|
|
|
end
|
|
|
|
|
2015-07-02 08:49:52 +02:00
|
|
|
def ttest_puts_string
|
2014-08-21 21:57:20 +02:00
|
|
|
@string_input = <<HERE
|
2015-05-30 13:49:10 +02:00
|
|
|
putstring("Hello")
|
2014-08-22 09:21:12 +02:00
|
|
|
HERE
|
|
|
|
check
|
|
|
|
end
|
|
|
|
|
2015-07-21 18:41:30 +02:00
|
|
|
def test_string_put
|
2014-08-22 09:21:12 +02:00
|
|
|
@string_input = <<HERE
|
2015-07-02 12:49:33 +02:00
|
|
|
"Hello again\n".putstring()
|
2014-08-21 21:57:20 +02:00
|
|
|
HERE
|
|
|
|
check
|
|
|
|
end
|
2015-05-16 11:53:10 +02:00
|
|
|
end
|