Code Monkey home page Code Monkey logo

Comments (3)

jeremyevans avatar jeremyevans commented on August 16, 2024

Due to CRuby's conservative GC, you can never be sure that an object would be finalized, because there might be something on the C stack that looks like a reference to it.

However, CRuby can probably use the same approach that JRuby uses (create 50 objects and GC after each), since that should statistically make it unlikely that all instances will not be GCed.

Can you try the following patch and let me know if it makes the tests pass?:

diff --git a/spec/rack/test/uploaded_file_spec.rb b/spec/rack/test/uploaded_file_spec.rb
index 2cb56ac..67bfbc5 100644
--- a/spec/rack/test/uploaded_file_spec.rb
+++ b/spec/rack/test/uploaded_file_spec.rb
@@ -69,8 +69,10 @@ describe Rack::Test::UploadedFile do
         System.gc
       end
     else
-      c.new(file_path)
-      GC.start
+      50.times do |_i|
+        c.new(file_path)
+        GC.start
+      end
     end
 
     # Due to CRuby's conservative garbage collection, you can never guarantee

from rack-test.

matoro avatar matoro commented on August 16, 2024

Due to CRuby's conservative GC, you can never be sure that an object would be finalized, because there might be something on the C stack that looks like a reference to it.

However, CRuby can probably use the same approach that JRuby uses (create 50 objects and GC after each), since that should statistically make it unlikely that all instances will not be GCed.

Can you try the following patch and let me know if it makes the tests pass?:

diff --git a/spec/rack/test/uploaded_file_spec.rb b/spec/rack/test/uploaded_file_spec.rb
index 2cb56ac..67bfbc5 100644
--- a/spec/rack/test/uploaded_file_spec.rb
+++ b/spec/rack/test/uploaded_file_spec.rb
@@ -69,8 +69,10 @@ describe Rack::Test::UploadedFile do
         System.gc
       end
     else
-      c.new(file_path)
-      GC.start
+      50.times do |_i|
+        c.new(file_path)
+        GC.start
+      end
     end
 
     # Due to CRuby's conservative garbage collection, you can never guarantee

That does the trick! πŸ‘ Thank you!!

from rack-test.

jeremyevans avatar jeremyevans commented on August 16, 2024

OK, I pushed a commit for that. Thanks for the report!

from rack-test.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.