From 3b0605ab2aa5807947ab68fe646092f7407076ff Mon Sep 17 00:00:00 2001 From: Camden Narzt Date: Mon, 21 Oct 2024 06:53:50 -0600 Subject: [PATCH] =?UTF-8?q?test=20doesn=E2=80=99t=20process=20requests=20o?= =?UTF-8?q?n=20totallybusy=20processes=20obviously?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/cxx/Core/ApplicationPool/PoolTest.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/cxx/Core/ApplicationPool/PoolTest.cpp b/test/cxx/Core/ApplicationPool/PoolTest.cpp index 5b7022a1bc..459c60379f 100644 --- a/test/cxx/Core/ApplicationPool/PoolTest.cpp +++ b/test/cxx/Core/ApplicationPool/PoolTest.cpp @@ -467,15 +467,6 @@ namespace tut { ProcessPtr process4 = currentSession->getProcess()->shared_from_this(); currentSession.reset(); ensure_equals("(7)", process3, process4); - - // Now that both processes are totally busy, next asyncGet() - // should select the process that has the lowest spawnTime. - pool->asyncGet(options, callback); - ensure_equals("(8)", number, 5); - SessionPtr session5 = currentSession; - ProcessPtr process5 = currentSession->getProcess()->shared_from_this(); - currentSession.reset(); - ensure_equals("(9)", process5, first_spawned_process); } TEST_METHOD(9) {