diff --git a/unit_tests/gen8/test_sample.cpp b/unit_tests/gen8/test_sample.cpp index 2a10b9d978..fb568a5ee1 100644 --- a/unit_tests/gen8/test_sample.cpp +++ b/unit_tests/gen8/test_sample.cpp @@ -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 Gen8OnlyTest; GEN8TEST_F(Gen8OnlyTest, shouldPassOnGen8) { EXPECT_EQ(IGFX_GEN8_CORE, pDevice->getRenderCoreFamily()); - EXPECT_NE(IGFX_GEN9_CORE, pDevice->getRenderCoreFamily()); } diff --git a/unit_tests/gen9/test_sample.cpp b/unit_tests/gen9/test_sample.cpp index d929375941..2c3fe13ae4 100644 --- a/unit_tests/gen9/test_sample.cpp +++ b/unit_tests/gen9/test_sample.cpp @@ -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 Gen9OnlyTest; GEN9TEST_F(Gen9OnlyTest, shouldPassOnGen9) { - EXPECT_NE(IGFX_GEN8_CORE, pDevice->getRenderCoreFamily()); EXPECT_EQ(IGFX_GEN9_CORE, pDevice->getRenderCoreFamily()); }