2015-11-08 13:30:28 +01:00
|
|
|
require_relative "helper"
|
|
|
|
|
2015-11-08 14:15:55 +01:00
|
|
|
class MultTest < MiniTest::Test
|
2015-11-08 13:30:28 +01:00
|
|
|
include Ticker
|
|
|
|
include AST::Sexp
|
|
|
|
|
|
|
|
def setup
|
|
|
|
@string_input = <<HERE
|
|
|
|
class Object
|
|
|
|
int main()
|
2015-11-08 14:15:55 +01:00
|
|
|
return #{2**31} * #{2**31}
|
2015-11-08 13:30:28 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
HERE
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2015-11-08 14:15:55 +01:00
|
|
|
def test_mult
|
2015-11-08 13:30:28 +01:00
|
|
|
#show_ticks # get output of what is
|
|
|
|
check_chain ["Branch","Label","LoadConstant","GetSlot","SetSlot",
|
|
|
|
"LoadConstant","SetSlot","FunctionCall","Label","LoadConstant",
|
|
|
|
"LoadConstant","OperatorInstruction","SetSlot","Label","FunctionReturn",
|
|
|
|
"RegisterTransfer","Syscall","NilClass"]
|
2015-11-08 14:15:55 +01:00
|
|
|
check_return 0
|
2015-11-08 13:30:28 +01:00
|
|
|
end
|
2015-11-08 14:15:55 +01:00
|
|
|
def test_overflow
|
|
|
|
ticks( 12 )
|
|
|
|
assert @interpreter.flags[:overflow]
|
2015-11-08 13:30:28 +01:00
|
|
|
end
|
2015-11-08 14:15:55 +01:00
|
|
|
|
|
|
|
def test_zero
|
|
|
|
ticks( 12 )
|
|
|
|
assert @interpreter.flags[:zero]
|
2015-11-08 13:30:28 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|