1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

NamedPipe: Avoid spurious test failures due to pipe name collisions

This commit is contained in:
reuk 2020-11-24 14:45:50 +00:00
parent ac612693aa
commit c5136d28b7

View file

@ -77,7 +77,7 @@ public:
void runTest() override
{
const String pipeName ("TestPipe");
const auto pipeName = "TestPipe" + String ((intptr_t) Thread::getCurrentThreadId());
beginTest ("Pre test cleanup");
{