test/ruby/test_set.rb: mmtk doesn't have GC.compact
authorJean Boussier <[email protected]>
Tue, 29 Apr 2025 20:36:06 +0000 (29 22:36 +0200)
committerJean Boussier <[email protected]>
Tue, 29 Apr 2025 20:36:06 +0000 (29 22:36 +0200)
test/ruby/test_set.rb

index 5d77c50..2de6cda 100644 (file)
@@ -874,7 +874,10 @@ class TC_Set < Test::Unit::TestCase
     end
 
     x
-    GC.compact
+    begin
+      GC.compact
+    rescue NotImplementedError
+    end
     end;
   end
 end