rubyx/test/risc/interpreter/while/test_while_simple.rb

63 lines
2.0 KiB
Ruby
Raw Normal View History

2018-04-23 12:16:46 +02:00
require_relative "../helper"
2018-04-19 18:23:12 +02:00
module Risc
class InterpreterWhileSimple < MiniTest::Test
2018-04-19 18:23:12 +02:00
include Ticker
def setup
@string_input = as_main 'a = true; while( a ); a = false;end;return a'
super
end
def test_while
2018-04-19 18:23:12 +02:00
#show_main_ticks # get output of what is in main
2019-08-23 14:31:22 +02:00
check_main_chain [LoadConstant, RegToSlot, SlotToReg, LoadConstant, OperatorInstruction, #5
IsZero, LoadConstant, OperatorInstruction, IsZero, LoadConstant, #10
RegToSlot, Branch, SlotToReg, LoadConstant, OperatorInstruction, #15
IsZero, SlotToReg, RegToSlot, Branch, SlotToReg, #20
SlotToReg, RegToSlot, SlotToReg, SlotToReg, FunctionReturn, #25
Transfer, SlotToReg, SlotToReg, Transfer, Syscall, #30
2019-08-23 14:31:22 +02:00
NilClass,] #35
assert_kind_of NilClass , get_return
2018-04-19 18:23:12 +02:00
end
def test_load_false_const
2018-05-24 20:20:56 +02:00
load = main_ticks(1)
2018-04-19 18:23:12 +02:00
assert_equal LoadConstant , load.class
assert_kind_of Parfait::TrueClass , load.constant
end
2018-05-24 20:20:56 +02:00
def base
2019-08-23 09:20:39 +02:00
4
2018-05-24 20:20:56 +02:00
end
2018-04-19 18:23:12 +02:00
def test_load_false
2018-05-24 20:20:56 +02:00
load = main_ticks(base)
2018-04-19 18:23:12 +02:00
assert_equal LoadConstant , load.class
assert_equal Parfait::FalseClass , load.constant.class
end
def test_compare
2018-05-24 20:20:56 +02:00
op = main_ticks(base+1)
2018-04-19 18:23:12 +02:00
assert_equal OperatorInstruction , op.class
assert_equal :- , op.operator
end
def test_not_zero
2018-05-24 20:20:56 +02:00
check = main_ticks(base + 2)
2018-04-19 18:23:12 +02:00
assert_equal IsZero , check.class
assert check.label.name.start_with?("merge_label") , check.label.name
end
2019-08-23 09:20:39 +02:00
def test_load_false
load = main_ticks(base+3)
assert_equal LoadConstant , load.class
assert_equal Parfait::NilClass , load.constant.class
end
2018-04-19 18:23:12 +02:00
def test_compare2
2018-05-24 20:20:56 +02:00
op = main_ticks(base + 4)
2018-04-19 18:23:12 +02:00
assert_equal OperatorInstruction , op.class
assert_equal :- , op.operator
end
def test_not_zero2
2018-05-24 20:20:56 +02:00
check = main_ticks(base + 5)
2018-04-19 18:23:12 +02:00
assert_equal IsZero , check.class
assert check.label.name.start_with?("merge_label") , check.label.name
end
end
end