ULTs cleanup

remove redundant EXPECT_'s

Change-Id: Ibbb00504f3f84c16e3bd880ad00d2e814ce82d5c
This commit is contained in:
Artur Harasimiuk 2018-04-06 15:49:47 +02:00 committed by sys_ocldev
parent e913882169
commit 6b648bca35
2 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, Intel Corporation
* Copyright (c) 2017 - 2018, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@ -35,5 +35,4 @@ typedef Test<DeviceFixture> Gen8OnlyTest;
GEN8TEST_F(Gen8OnlyTest, shouldPassOnGen8) {
EXPECT_EQ(IGFX_GEN8_CORE, pDevice->getRenderCoreFamily());
EXPECT_NE(IGFX_GEN9_CORE, pDevice->getRenderCoreFamily());
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, Intel Corporation
* Copyright (c) 2017 - 2018, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@ -28,6 +28,5 @@ using namespace OCLRT;
typedef Test<DeviceFixture> Gen9OnlyTest;
GEN9TEST_F(Gen9OnlyTest, shouldPassOnGen9) {
EXPECT_NE(IGFX_GEN8_CORE, pDevice->getRenderCoreFamily());
EXPECT_EQ(IGFX_GEN9_CORE, pDevice->getRenderCoreFamily());
}