38 lines
1.4 KiB
C++
38 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/os_context.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace NEO;
|
|
|
|
TEST(OSContext, whenCreatingDefaultOsContextThenExpectInitializedAlways) {
|
|
OsContext *osContext = OsContext::create(nullptr, 0, 0, aub_stream::ENGINE_RCS, PreemptionMode::Disabled, false, false, false);
|
|
EXPECT_TRUE(osContext->isInitialized());
|
|
EXPECT_FALSE(osContext->isLowPriority());
|
|
EXPECT_FALSE(osContext->isInternalEngine());
|
|
EXPECT_FALSE(osContext->isRootDevice());
|
|
delete osContext;
|
|
}
|
|
|
|
TEST(OSContext, givenLowPriorityRootDeviceInternalAreTrueWhenCreatingDefaultOsContextThenExpectGettersTrue) {
|
|
OsContext *osContext = OsContext::create(nullptr, 0, 0, aub_stream::ENGINE_RCS, PreemptionMode::Disabled, true, true, true);
|
|
EXPECT_TRUE(osContext->isLowPriority());
|
|
EXPECT_TRUE(osContext->isInternalEngine());
|
|
EXPECT_TRUE(osContext->isRootDevice());
|
|
delete osContext;
|
|
}
|
|
|
|
TEST(OSContext, givenOsContextCreatedDefaultIsFalseWhenSettingTrueThenFlagTrueReturned) {
|
|
OsContext *osContext = OsContext::create(nullptr, 0, 0, aub_stream::ENGINE_RCS, PreemptionMode::Disabled, false, false, false);
|
|
EXPECT_FALSE(osContext->isDefaultContext());
|
|
osContext->setDefaultContext(true);
|
|
EXPECT_TRUE(osContext->isDefaultContext());
|
|
delete osContext;
|
|
}
|