ULTs cleanup
remove redundant EXPECT_'s Change-Id: Ibbb00504f3f84c16e3bd880ad00d2e814ce82d5c
This commit is contained in:
parent
e913882169
commit
6b648bca35
|
@ -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());
|
||||
}
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue