How to know which test is currently running?

I have a unit test that seems to be taking a long time (~ 2 minutes),
but with the “dot dot dot” display, I don’t know which one it is.
I’ve tried “rake test --trace”, but that only increases the verbosity
of the setup phase. Is there a way for “rake test” to display the
test that’s running instead of just dots?

Thanks,
Eric

You can always run individual unit tests manually to determine which
one is causing the problem:

eg: ruby test\unit<testname>.rb

Do this for each unit test in turn until you find the culprit.