The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
|
use SPVM 'TestCase::Module::Native::Compiler' ; my $api = SPVM::api();
my $start_memory_blocks_count = $api ->get_memory_blocks_count();
{
ok(SPVM::TestCase::Module::Native::Compiler->compile);
ok(SPVM::TestCase::Module::Native::Compiler->compile_anon_class);
ok(SPVM::TestCase::Module::Native::Compiler->eval_string);
}
$api ->set_exception( undef );
my $end_memory_blocks_count = $api ->get_memory_blocks_count();
is( $end_memory_blocks_count , $start_memory_blocks_count );
done_testing;
|