2017-08-30 21:27:12 +02:00
|
|
|
|
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Vool
|
2017-08-30 21:54:03 +02:00
|
|
|
class TestConditionIfMom < MiniTest::Test
|
2017-08-30 21:27:12 +02:00
|
|
|
include MomCompile
|
2018-03-16 14:35:22 +01:00
|
|
|
include Mom
|
2017-08-30 21:27:12 +02:00
|
|
|
|
|
|
|
def setup
|
|
|
|
Risc.machine.boot
|
2018-03-16 14:35:22 +01:00
|
|
|
@ins = compile_first_method( "if(@a == 5) ; 5.mod4 ; else; 4.mod4 ; end")
|
2017-08-30 21:27:12 +02:00
|
|
|
end
|
|
|
|
|
2018-03-16 14:35:22 +01:00
|
|
|
def test_condition
|
2018-03-20 19:01:42 +01:00
|
|
|
assert_equal TruthCheck , @ins.next(10).class
|
2017-08-30 21:54:03 +02:00
|
|
|
end
|
2017-09-04 20:31:49 +02:00
|
|
|
def test_condition_is_slot
|
2018-03-20 19:01:42 +01:00
|
|
|
assert_equal SlotDefinition , @ins.next(10).condition.class , @ins
|
2018-03-16 14:35:22 +01:00
|
|
|
end
|
|
|
|
def test_hoisted_dynamic_call
|
2018-03-20 19:01:42 +01:00
|
|
|
assert_equal DynamicCall , @ins.next(8).class
|
2017-09-04 20:00:29 +02:00
|
|
|
end
|
2018-03-16 14:35:22 +01:00
|
|
|
def test_array
|
2018-03-20 19:01:42 +01:00
|
|
|
check_array [NotSameCheck, SlotLoad, MessageSetup, ArgumentTransfer, SimpleCall, SlotLoad ,
|
|
|
|
MessageSetup, ArgumentTransfer, DynamicCall, SlotLoad, TruthCheck, Label ,
|
|
|
|
MessageSetup, ArgumentTransfer, SimpleCall, Jump, Label, MessageSetup ,
|
|
|
|
ArgumentTransfer, SimpleCall, Label] , @ins
|
2017-08-30 21:27:12 +02:00
|
|
|
end
|
2018-03-16 14:35:22 +01:00
|
|
|
|
2017-08-30 21:27:12 +02:00
|
|
|
end
|
|
|
|
end
|