1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/test/unit_test/cmd_parse/gen_cmd_parse.h"
#include "opencl/test/unit_test/fixtures/cl_device_fixture.h"
#include "test.h"
using namespace NEO;
struct CommandParse
: public ClDeviceFixture,
public ::testing::Test {
void SetUp() override {
ClDeviceFixture::SetUp();
}
void TearDown() override {
ClDeviceFixture::TearDown();
}
};
HWTEST_F(CommandParse, WhenGeneratingCommandBufferThenIsNotNull) {
typedef typename FamilyType::PARSE PARSE;
GenCmdList cmds;
EXPECT_FALSE(PARSE::parseCommandBuffer(cmds, nullptr, sizeof(void *)));
}
HWTEST_F(CommandParse, WhenGeneratingCommandBufferThenDoesNotContainGarbage) {
typedef typename FamilyType::PARSE PARSE;
uint32_t buffer[30] = {0xbaadf00d};
GenCmdList cmds;
EXPECT_FALSE(PARSE::parseCommandBuffer(cmds, buffer, sizeof(uint32_t)));
}
HWTEST_F(CommandParse, GivenGarbageWhenGeneratingCommandBufferThenLengthIsZero) {
typedef typename FamilyType::PARSE PARSE;
uint32_t buffer[30] = {0xbaadf00d};
EXPECT_EQ(0u, PARSE::getCommandLength(buffer));
}
HWTEST_F(CommandParse, WhenGeneratingCommandBufferThenBufferIsCorrect) {
typedef typename FamilyType::PARSE PARSE;
typedef typename FamilyType::WALKER_TYPE WALKER_TYPE;
GenCmdList cmds;
WALKER_TYPE buffer = FamilyType::cmdInitGpgpuWalker;
EXPECT_TRUE(PARSE::parseCommandBuffer(cmds, &buffer, 0));
EXPECT_FALSE(PARSE::parseCommandBuffer(cmds, &buffer, 1));
EXPECT_FALSE(PARSE::parseCommandBuffer(cmds, &buffer, 2));
EXPECT_FALSE(PARSE::parseCommandBuffer(cmds, &buffer, 3));
EXPECT_FALSE(PARSE::parseCommandBuffer(cmds, &buffer, 4));
EXPECT_TRUE(PARSE::parseCommandBuffer(cmds, &buffer, sizeof(buffer)));
}
|