This fixes the issue of multiple test suites opening the same file for writing.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
This seems suspicious to me. Why are 2 different instances of dotest.py
running in different processes both trying to run the same test?
Comment Actions
Why are 2 different instances of dotest.py running in different processes both trying to run the same test?
They're not. But all test suites write to the same TestStarted and TestFinished.
Comment Actions
Oh ok, that makes sense then. Would it be better to use the filename
instead of the pid? I guess it doesn't matter because nobody really looks
at those files anyway, they're just for bookkeeping for the test suite. So
lgtm, up to you if you want to use filename or pid.