Kernel Source Level debugger support 2/n

- adding kernel debug option to build program
- program tests refactor
- pregenerated debug kernel for ULTs

Change-Id: I00152639148fd48c4f709dc7cd9c46392df567c8
This commit is contained in:
Hoppe, Mateusz
2018-03-15 18:13:52 +01:00
committed by sys_ocldev
parent 507544a999
commit 18eb0b5e64
9 changed files with 205 additions and 70 deletions

View File

@ -286,15 +286,15 @@ INSTANTIATE_TEST_CASE_P(KernelTests,
::testing::ValuesIn(BinaryFileNames),
::testing::ValuesIn(KernelNames)));
class KernelFromBinaryTest : public ProgramFromBinarySimpleTest,
class KernelFromBinaryTest : public ProgramSimpleFixture,
public MemoryManagementFixture {
public:
void SetUp() override {
MemoryManagementFixture::SetUp();
ProgramFromBinarySimpleTest::SetUp();
ProgramSimpleFixture::SetUp();
}
void TearDown() override {
ProgramFromBinarySimpleTest::TearDown();
ProgramSimpleFixture::TearDown();
MemoryManagementFixture::TearDown();
}
};