test: add bcs suffix for copy tests
Related-To: NEO-13003, NEO-14814 Signed-off-by: Jack Myers <jack.myers@intel.com> Signed-off-by: Bellekallu Rajkiran <bellekallu.rajkiran@intel.com>
This commit is contained in:
parent
60eecb4ad4
commit
ccf4a0ff03
|
@ -69,6 +69,9 @@ void MulticontextAubFixture::setUp(uint32_t numberOfTiles, EnabledCommandStreame
|
|||
}
|
||||
isRenderEngineSupported = (renderEngine != aub_stream::NUM_ENGINES);
|
||||
auto firstEngine = isRenderEngineSupported ? renderEngine : aub_stream::ENGINE_CCS;
|
||||
if (isFirstEngineBcs) {
|
||||
firstEngine = aub_stream::ENGINE_BCS;
|
||||
}
|
||||
|
||||
std::stringstream strfilename;
|
||||
strfilename << ApiSpecificConfig::getAubPrefixForSpecificApi();
|
||||
|
|
|
@ -118,6 +118,7 @@ struct MulticontextAubFixture {
|
|||
uint32_t numberOfEnabledTiles = 0;
|
||||
bool isCcs1Supported = false;
|
||||
bool isRenderEngineSupported = true;
|
||||
bool isFirstEngineBcs = false;
|
||||
bool skipped = false;
|
||||
DispatchMode dispatchMode = DispatchMode::batchedDispatch;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue