2018-06-24 16:10:39 +02:00
|
|
|
require_relative 'helper'
|
|
|
|
|
|
|
|
module Mains
|
|
|
|
class TestArm < MiniTest::Test
|
2019-08-18 14:30:52 +02:00
|
|
|
@Qemu = "qemu-arm"
|
2019-08-18 14:40:40 +02:00
|
|
|
@Linker = "arm-linux-gnueabi-ld"
|
2019-08-18 14:30:52 +02:00
|
|
|
def self.Linker
|
|
|
|
@Linker
|
|
|
|
end
|
|
|
|
def self.Qemu
|
|
|
|
@Qemu
|
|
|
|
end
|
2019-08-18 19:35:01 +02:00
|
|
|
DEBUG = false
|
2018-06-24 16:44:02 +02:00
|
|
|
|
2018-06-24 16:10:39 +02:00
|
|
|
# runnable_methods is called by minitest to determine which tests to run
|
|
|
|
def self.runnable_methods
|
2018-06-24 16:44:02 +02:00
|
|
|
all = Dir["test/mains/source/*_*.rb"]
|
2018-06-24 16:10:39 +02:00
|
|
|
tests =[]
|
2019-08-18 11:39:23 +02:00
|
|
|
return tests unless has_qemu
|
2018-06-24 16:10:39 +02:00
|
|
|
all.each do |file_name|
|
|
|
|
fullname = file_name.split("/").last.split(".").first
|
|
|
|
name , stdout , exit_code = fullname.split("_")
|
|
|
|
method_name = "test_#{name}"
|
|
|
|
input = File.read(file_name)
|
2018-06-24 16:44:02 +02:00
|
|
|
tests << method_name
|
2018-06-24 16:10:39 +02:00
|
|
|
self.send(:define_method, method_name ) do
|
2019-08-18 11:39:23 +02:00
|
|
|
out , code = run_code(input , name)
|
2018-06-24 16:10:39 +02:00
|
|
|
assert_equal stdout , out , "Wrong stdout #{name}"
|
|
|
|
assert_equal exit_code , code.to_s , "Wrong exit code #{name}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
tests
|
|
|
|
end
|
|
|
|
|
2019-08-18 11:39:23 +02:00
|
|
|
def self.has_qemu
|
2019-08-18 14:22:09 +02:00
|
|
|
if `uname -a`.include?("torsten")
|
2019-08-18 14:30:52 +02:00
|
|
|
@Linker = "arm-linux-gnu-ld"
|
2019-09-08 12:44:51 +02:00
|
|
|
return false unless DEBUG
|
2019-08-18 14:22:09 +02:00
|
|
|
end
|
|
|
|
begin
|
2019-08-18 14:30:52 +02:00
|
|
|
`#{@Qemu} -version`
|
|
|
|
`#{@Linker} -v`
|
2019-08-18 14:22:09 +02:00
|
|
|
rescue => e
|
|
|
|
puts e
|
|
|
|
return false
|
|
|
|
end
|
2019-08-18 11:39:23 +02:00
|
|
|
true
|
2018-06-24 16:10:39 +02:00
|
|
|
end
|
|
|
|
|
2019-08-18 11:39:23 +02:00
|
|
|
def run_code(input , name )
|
|
|
|
puts "Compiling #{name}.o" if DEBUG
|
|
|
|
|
|
|
|
linker = ::RubyX::RubyXCompiler.new({}).ruby_to_binary( input , :arm )
|
|
|
|
writer = Elf::ObjectWriter.new(linker)
|
|
|
|
|
|
|
|
writer.save "mains.o"
|
|
|
|
|
|
|
|
puts "Linking #{name}" if DEBUG
|
|
|
|
|
2019-08-18 14:30:52 +02:00
|
|
|
`#{TestArm.Linker} -N mains.o`
|
2019-08-18 11:39:23 +02:00
|
|
|
assert_equal 0 , $?.exitstatus , "Linking #{name} failed #{$?}"
|
|
|
|
|
|
|
|
puts "Running #{name}" if DEBUG
|
2019-08-18 14:30:52 +02:00
|
|
|
stdout = `#{TestArm.Qemu} ./a.out`
|
2019-08-18 11:39:23 +02:00
|
|
|
exit_code = $?.exitstatus
|
2018-06-24 16:44:02 +02:00
|
|
|
puts "Result #{stdout} #{exit_code}" if DEBUG
|
|
|
|
return stdout , exit_code
|
2018-06-24 16:10:39 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|