rubyx/test/risc/interpreter/builtin/test_int_math.rb
Torsten Rüger fa0aa30386 Move builtin wholesale to Mom
Since Builtin generates risc, just like mom instructions, it was a design mistake to put builtin into risc in the first place. Now that borders are coming more into focus, it make much more sense to have the builtin in mom.
In fact the instructions should be moved out and a seperate invocation mechanism used , so functions can be parsed, not generated (wip)
2019-08-12 12:38:29 +03:00

45 lines
981 B
Ruby

require_relative "helper"
module Mom
module Builtin
class IntMath < BuiltinTest
include Ticker
def setup
end
def test_add
run_main_return "5 + 5"
assert_equal 10 , get_return
end
def test_minus
run_main_return "5 - 5"
assert_equal 0 , get_return
end
def test_minus_neg
run_main_return "5 - 15"
assert_equal( -10 , get_return)
end
def test_rshift
run_main_return "#{2**8} >> 3"
assert_equal 2**5 , get_return
end
def test_lshift
run_main_return "#{2**8} << 3"
assert_equal 2**11 , get_return
end
def test_div10
run_main_return "45.div10"
assert_equal 4 , get_return
end
def test_div4
run_main_return "45.div4"
assert_equal 11 , get_return
end
def test_mult
run_main_return "4 * 4"
assert_equal 16 , get_return
end
end
end
end