busy fixing tests

This commit is contained in:
Torsten Ruger
2018-05-24 19:38:48 +03:00
parent 183d4152d5
commit bf23883270
8 changed files with 39 additions and 44 deletions

View File

@ -11,7 +11,7 @@ module Risc
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
RegToSlot, SlotToReg, RegToSlot, SlotToReg, RegToSlot,
LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
RegToSlot, SlotToReg, LoadConstant, FunctionCall, Label]
RegToSlot, SlotToReg, FunctionCall, Label]
end
def test_send_instructions
@ -27,16 +27,16 @@ module Risc
end
def test_call_reg_setup
produced = produce_body
assert_equal produced.next(22).register , produced.next(23).register
assert_equal :div4 , produced.next(22).method.name
end
def test_function_call
produced = produce_body
assert_equal FunctionCall , produced.next(23).class
assert_equal :div4 , produced.next(23).method.name
assert_equal FunctionCall , produced.next(22).class
assert_equal :div4 , produced.next(22).method.name
end
def test_check_continue
produced = produce_body
assert produced.next(24).name.start_with?("continue_")
assert produced.next(23).name.start_with?("continue_")
end
#TODO check the message setup, type and frame moves
end