Disable waiting on timestamps.

Not yet ready for full enabling.

Signed-off-by: Michal Mrozek <michal.mrozek@intel.com>
This commit is contained in:
Michal Mrozek
2022-01-14 11:49:45 +00:00
committed by Compute-Runtime-Automation
parent e7f2676d5e
commit eedc77e1ec
2 changed files with 4 additions and 4 deletions

View File

@ -833,8 +833,8 @@ TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsFalse) {
EXPECT_FALSE(CommandQueue::isAssignEngineRoundRobinEnabled());
}
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsTrue) {
EXPECT_TRUE(CommandQueue::isTimestampWaitEnabled());
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsFalse) {
EXPECT_FALSE(CommandQueue::isTimestampWaitEnabled());
}
TEST(CommandQueueTest, givenEnableCmdQRoundRobindEngineAssignSetWhenCheckEngineRoundRobinAssignThenReturnsTrue) {