Skip to content

Commit 6b648bc

Browse files
ULTs cleanup
remove redundant EXPECT_'s Change-Id: Ibbb00504f3f84c16e3bd880ad00d2e814ce82d5c
1 parent e913882 commit 6b648bc

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

unit_tests/gen8/test_sample.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, Intel Corporation
2+
* Copyright (c) 2017 - 2018, Intel Corporation
33
*
44
* Permission is hereby granted, free of charge, to any person obtaining a
55
* copy of this software and associated documentation files (the "Software"),
@@ -35,5 +35,4 @@ typedef Test<DeviceFixture> Gen8OnlyTest;
3535

3636
GEN8TEST_F(Gen8OnlyTest, shouldPassOnGen8) {
3737
EXPECT_EQ(IGFX_GEN8_CORE, pDevice->getRenderCoreFamily());
38-
EXPECT_NE(IGFX_GEN9_CORE, pDevice->getRenderCoreFamily());
3938
}

unit_tests/gen9/test_sample.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, Intel Corporation
2+
* Copyright (c) 2017 - 2018, Intel Corporation
33
*
44
* Permission is hereby granted, free of charge, to any person obtaining a
55
* copy of this software and associated documentation files (the "Software"),
@@ -28,6 +28,5 @@ using namespace OCLRT;
2828
typedef Test<DeviceFixture> Gen9OnlyTest;
2929

3030
GEN9TEST_F(Gen9OnlyTest, shouldPassOnGen9) {
31-
EXPECT_NE(IGFX_GEN8_CORE, pDevice->getRenderCoreFamily());
3231
EXPECT_EQ(IGFX_GEN9_CORE, pDevice->getRenderCoreFamily());
3332
}

0 commit comments

Comments
 (0)