2015-10-22 14:34:47 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
2015-11-08 14:15:55 +01:00
|
|
|
class IfTest < MiniTest::Test
|
2015-10-22 14:34:47 +02:00
|
|
|
include Ticker
|
|
|
|
|
2015-11-08 13:30:28 +01:00
|
|
|
def setup
|
2015-10-22 14:34:47 +02:00
|
|
|
@string_input = <<HERE
|
|
|
|
class Object
|
|
|
|
int itest(int n)
|
|
|
|
if_zero( n - 12)
|
|
|
|
"then".putstring()
|
|
|
|
else
|
|
|
|
"else".putstring()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
int main()
|
|
|
|
itest(20)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
HERE
|
2015-11-08 13:30:28 +01:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_if
|
2015-10-22 14:34:47 +02:00
|
|
|
#show_ticks # get output of what is
|
2015-11-08 13:30:28 +01:00
|
|
|
check_chain ["Branch","Label","LoadConstant","GetSlot","SetSlot",
|
2015-11-07 21:20:21 +01:00
|
|
|
"LoadConstant","SetSlot","FunctionCall","Label","GetSlot",
|
|
|
|
"GetSlot","SetSlot","LoadConstant","SetSlot","LoadConstant",
|
|
|
|
"SetSlot","LoadConstant","SetSlot","LoadConstant","SetSlot",
|
|
|
|
"RegisterTransfer","FunctionCall","Label","GetSlot","LoadConstant",
|
|
|
|
"OperatorInstruction","IsZero","GetSlot","LoadConstant","SetSlot",
|
2015-11-03 10:25:02 +01:00
|
|
|
"LoadConstant","SetSlot","LoadConstant","SetSlot","LoadConstant",
|
|
|
|
"SetSlot","RegisterTransfer","FunctionCall","Label","GetSlot",
|
2015-11-07 21:20:21 +01:00
|
|
|
"RegisterTransfer","Syscall","RegisterTransfer","RegisterTransfer","SetSlot",
|
|
|
|
"Label","FunctionReturn","RegisterTransfer","GetSlot","GetSlot",
|
|
|
|
"Branch","Label","Label","FunctionReturn","RegisterTransfer",
|
|
|
|
"GetSlot","GetSlot","Label","FunctionReturn","RegisterTransfer",
|
2015-11-08 13:30:28 +01:00
|
|
|
"Syscall","NilClass"]
|
2015-10-22 14:34:47 +02:00
|
|
|
end
|
|
|
|
end
|