ce79617875
was returning wrong register (1, not 0) also saving the message for test, which changes order as the return value destroys the message
52 lines
1.7 KiB
Ruby
52 lines
1.7 KiB
Ruby
require_relative "../helper"
|
|
|
|
module Risc
|
|
class InterpreterMod < MiniTest::Test
|
|
include Ticker
|
|
|
|
def setup
|
|
@string_input = as_main "return 9.div4"
|
|
super
|
|
end
|
|
|
|
def test_chain
|
|
#show_main_ticks # get output of what is
|
|
check_main_chain [LoadConstant, LoadConstant, SlotToReg, RegToSlot, RegToSlot,
|
|
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
|
|
RegToSlot, SlotToReg, RegToSlot, Branch, SlotToReg,
|
|
RegToSlot, LoadConstant, SlotToReg, RegToSlot, LoadConstant,
|
|
SlotToReg, RegToSlot, SlotToReg, FunctionCall, SlotToReg,
|
|
SlotToReg, LoadData, OperatorInstruction, LoadConstant, SlotToReg,
|
|
SlotToReg, RegToSlot, RegToSlot, RegToSlot, SlotToReg,
|
|
SlotToReg, RegToSlot, Branch, SlotToReg, SlotToReg,
|
|
SlotToReg, FunctionReturn, SlotToReg, SlotToReg, RegToSlot,
|
|
Branch, SlotToReg, SlotToReg, RegToSlot, SlotToReg,
|
|
SlotToReg, RegToSlot, SlotToReg, SlotToReg, SlotToReg,
|
|
FunctionReturn, Transfer, SlotToReg, Branch, SlotToReg,
|
|
Syscall, NilClass]
|
|
assert_equal 2 , get_return
|
|
end
|
|
|
|
def test_load
|
|
lod = main_ticks(17)
|
|
assert_equal LoadConstant , lod.class
|
|
assert_equal 9 , lod.constant.value
|
|
end
|
|
def test_fix # reduce self to fix
|
|
sl = main_ticks(26)
|
|
assert_equal SlotToReg , sl.class
|
|
assert_equal :r1 , sl.array.symbol
|
|
assert_equal 2 , sl.index
|
|
assert_equal :r1 , sl.register.symbol
|
|
assert_equal 9 , @interpreter.get_register(:r1)
|
|
end
|
|
|
|
def test_sys
|
|
sys = main_ticks(61)
|
|
assert_equal Syscall , sys.class
|
|
assert_equal :exit , sys.name
|
|
end
|
|
|
|
end
|
|
end
|