mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
Fail when value is present in file but not in code. Change-Id: I03bd9b11c4d2c0c69c2511b53926010c1f89f055 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
35 lines
1.2 KiB
C++
35 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/test/unit_test/utilities/debug_file_reader_tests.inl"
|
|
|
|
using namespace NEO;
|
|
|
|
TEST(SettingsFileReader, givenTestFileWithDefaultValuesWhenTheyAreQueriedThenDefaultValuesMatch) {
|
|
|
|
// Use test settings file
|
|
std::unique_ptr<TestSettingsFileReader> reader =
|
|
std::unique_ptr<TestSettingsFileReader>(new TestSettingsFileReader(TestSettingsFileReader::testPath));
|
|
|
|
ASSERT_NE(nullptr, reader);
|
|
|
|
size_t debugVariableCount = 0;
|
|
bool variableFound = false;
|
|
bool compareSuccessful = false;
|
|
#define DECLARE_DEBUG_VARIABLE(dataType, variableName, defaultValue, description) \
|
|
variableFound = reader->hasSetting(#variableName); \
|
|
EXPECT_TRUE(variableFound) << #variableName; \
|
|
compareSuccessful = (defaultValue == reader->getSetting(#variableName, defaultValue)); \
|
|
EXPECT_TRUE(compareSuccessful) << #variableName; \
|
|
debugVariableCount++;
|
|
#include "debug_variables.inl"
|
|
#undef DECLARE_DEBUG_VARIABLE
|
|
|
|
size_t mapCount = reader->getStringSettingsCount();
|
|
EXPECT_EQ(mapCount, debugVariableCount);
|
|
}
|