File tree 1 file changed +0
-11
lines changed
test/Base_Tests/src/System
1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -36,17 +36,6 @@ add_specs suite_builder = suite_builder.group "Engine runner" group_builder->
36
36
Test.with_clue clue <|
37
37
retcode . should_equal 0
38
38
39
- ni_size_pending = if runs_in_aot then Nothing else "Only runs in AOT"
40
- group_builder.specify "Size of the Native Image executable should be kept reasonably small" pending=ni_size_pending <|
41
- min_size_mb = 150
42
- max_size_mb = 450
43
- exec = File.new enso_bin
44
- exec.exists . should_be_true
45
- Test.with_clue ("Size of the NI executable should be between [" + min_size_mb.to_text + "MB, " + max_size_mb.to_text + "MB]") <|
46
- actual_size_mb = exec.size / (1024 * 1024)
47
- (min_size_mb < actual_size_mb) . should_be_true
48
- (actual_size_mb < max_size_mb) . should_be_true
49
-
50
39
51
40
runs_in_aot =
52
41
prop = J_System.getProperty "org.graalvm.nativeimage.imagecode"
You can’t perform that action at this time.
0 commit comments