Wait for clean up worker thread to finish in stop()

... so that previous tests fully clean up before the next tests
start up.

Bug: b/292257025
Test: atest --host GfxstreamEnd2EndTests
Change-Id: I038512f85c6573d337fef5ce9292c1f27c4821ea
diff --git a/host/RendererImpl.cpp b/host/RendererImpl.cpp
index 9e8ec87..cf45efa 100644
--- a/host/RendererImpl.cpp
+++ b/host/RendererImpl.cpp
@@ -88,6 +88,7 @@
 
     void stop() {
         mCleanupWorker.enqueue(Exit{});
+        mCleanupWorker.join();
     }
 
     void waitForCleanup() {