In Ruby 1.9.3, you're allowed to run multiple test cases at once. I'm not sure whether this is a feature of the language, the minitest library, or a feature of YARV, so apologies for any bad terminology.

But have they eliminated the GVL for this, or does this merely mean that if one thread's doing IO, another thread can utilize the CPU?

link|improve this question

66% accept rate
It seems it's parallel even on Windows: rbwr.blogspot.com/2011/06/blog-post.html mentions fixing a bug for windows, and it says "Now windows can run make test-all parallel.". – Andrew Grimm Nov 10 '11 at 22:38
feedback

1 Answer

up vote 5 down vote accepted
+50

The implementation doesn't use threads, but separate processes communicating through pipes. See e.g. this presentation. So the GVL/GIL doesn't come into play.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.