mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-10 15:12:56 +08:00
Correct method names in device and module fixtures
correct naming in derived classes Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
fea9c9aca7
commit
6a46e8f0ca
@@ -14,19 +14,19 @@ using namespace NEO;
|
||||
|
||||
class CommandSetMMIOFixture : public DeviceFixture {
|
||||
public:
|
||||
void SetUp() {
|
||||
DeviceFixture::SetUp();
|
||||
void setUp() {
|
||||
DeviceFixture::setUp();
|
||||
cmdContainer = std::make_unique<CommandContainer>();
|
||||
cmdContainer->initialize(pDevice, nullptr, true);
|
||||
}
|
||||
void TearDown() {
|
||||
void tearDown() {
|
||||
cmdContainer.reset();
|
||||
DeviceFixture::TearDown();
|
||||
DeviceFixture::tearDown();
|
||||
}
|
||||
std::unique_ptr<CommandContainer> cmdContainer;
|
||||
};
|
||||
|
||||
using CommandSetMMIOTest = TestLegacy<CommandSetMMIOFixture>;
|
||||
using CommandSetMMIOTest = Test<CommandSetMMIOFixture>;
|
||||
|
||||
HWTEST_F(CommandSetMMIOTest, WhenProgrammingThenLoadRegisterImmIsUsed) {
|
||||
EncodeSetMMIO<FamilyType>::encodeIMM(*cmdContainer.get(), 0x2000, 0xbaa, false);
|
||||
|
||||
Reference in New Issue
Block a user