Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm doing some frontend tests on a web app using Ruby's Test::Unit. Are there any awkward race conditions in Test::Unit if I use multithreading in the tests?

For instance, if I want to run a test on 200 different pages, it would be very nice to parallelize it so that the tests might run in 1 second rather than 200 seconds.

So far, it seems like there IS a race condition in the code that counts the number of assertions (if I have an assertion within the multithreaded section, then it will say that there was one assertion rather than 200 assertions), but I haven't been able to uncover any other issues (where there is an error, it always notices).

Thanks!

share|improve this question
Is it practical to move the assertion itself out of the multithreaded section? – Andrew Grimm Jul 1 '12 at 23:15
The error message would be less descriptive than desirable if I moved the assertion out. If the only race conditions are the ones that I have already discovered, I'm fine with them, and I'll keep the code as-is. If there are other race conditions that I haven't discovered, then there could be other issues, so I would still like to know about how Test::Unit is. Also, I plan on doing other multithreaded things in my unit tests where it won't be practical to move the assertions outside (assuming it doesn't cause any big issues). – Sam Jul 2 '12 at 2:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.