Fixed more disabled tests

This commit is contained in:
2019-08-13 11:14:36 +03:00
parent aaf169ad8d
commit 8036b23593
10 changed files with 59 additions and 56 deletions

View File

@ -14,14 +14,16 @@ module RubyX
def test_to_risc
assert_equal Risc::RiscCollection , @collection.class
end
def pest_linker
def test_linker
assert_equal Risc::Linker , @collection.translate(:interpreter).class
end
def pest_method
assert_equal :main , @linker.assemblers.first.callable.name
def test_method
linker = @collection.translate(:interpreter)
assert_equal :main , linker.assemblers.first.callable.name
end
def pest_asm_len
assert_equal 23 , @linker.assemblers.length
def test_asm_len
linker = @collection.translate(:interpreter)
assert_equal 22 , linker.assemblers.length
end
end
class TestRubyXCompilerParfait < MiniTest::Test
@ -30,11 +32,14 @@ module RubyX
def setup
super
#BETTER TEST for class method in VOOL
code = "class Space ; def self.class_method; return 1; end;def main(arg);return Space.class_method;end; end"
@comp = RubyXCompiler.ruby_to_binary(code , load_parfait: true , platform: :interpreter)
end
def pest_load
def test_load
object = Parfait.object_space.get_class_by_name(:Object)
assert_equal Parfait::Class , object.class
object = object.instance_type

View File

@ -13,7 +13,7 @@ module RubyX
options.delete(:platform)
assert_raises{ RubyXCompiler.ruby_to_binary(space_source_for("main"), options)}
end
def pest_return_linker
def test_return_linker
@linker = RubyXCompiler.ruby_to_binary(space_source_for("main"), RubyX.interpreter_test_options)
assert_equal Risc::Linker , @linker.class
end
@ -29,13 +29,13 @@ module RubyX
assert_equal Vool::ScopeStatement , compiler.vool.class
assert_equal 2 , compiler.vool.length
end
def pest_bin_two_sources
def test_bin_two_sources
compiler = RubyXCompiler.new(RubyX.default_test_options)
compiler.ruby_to_vool(space_source_for("main"))
compiler.ruby_to_vool(space_source_for("twain"))
linker = compiler.to_binary(:interpreter)
assert_equal Risc::Linker , linker.class
assert_equal 24 , linker.assemblers.length
assert_equal 23 , linker.assemblers.length
end
end
end