rubyx/test/risc/interpreter/test_simple_if10.rb

32 lines
1.1 KiB
Ruby
Raw Normal View History

require_relative "helper"
module Risc
class InterreterSimpleIf10 < MiniTest::Test
include Ticker
def setup
@string_input = as_main 'if( 10 ); return "then";else;return "else";end'
super
end
def test_if
#show_ticks # get output of what is
check_chain [Branch, Label, LoadConstant, SlotToReg, LoadConstant,
SlotToReg, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
SlotToReg, SlotToReg, SlotToReg, RegToSlot, LoadConstant,
SlotToReg, SlotToReg, SlotToReg, SlotToReg, RegToSlot,
SlotToReg, RegToSlot, LoadConstant, RegToSlot, FunctionCall,
Label, LoadConstant, LoadConstant, OperatorInstruction, IsNotZero,
Label, LoadConstant, RegToSlot, SlotToReg, SlotToReg,
RegToSlot, SlotToReg, SlotToReg, FunctionReturn, Transfer,
Syscall, NilClass]
assert_equal Parfait::Word , get_return.class
assert_equal "else" , get_return.to_string
end
def test_exit
done = ticks(41)
assert_equal Syscall , done.class
end
end
end