wsd: test: ignore requests after testing has finished

Change-Id: Ifcb28bffb2aecd5c0d9c83fa7cdbd3a203b38f37
Signed-off-by: Ashod Nakashian <ashod.nakashian@collabora.co.uk>
This commit is contained in:
Ashod Nakashian 2023-04-13 08:45:25 -04:00 committed by Michael Meeks
parent 7547e15d79
commit 8c6d92bc46

View file

@ -465,7 +465,13 @@ protected:
oss << '\t' << pair.first << ": " << pair.second << " / ";
}
if (UnitBase::get().isFinished())
oss << "\nIgnoring as test has finished";
LOG_TST(oss.str());
if (UnitBase::get().isFinished())
return false;
}
assertTargetTest(uriReq);