Skip to content

Commit

Permalink
[code style] Align header guards in "tools/tests"folder (#1135)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiselik authored Jan 16, 2025
1 parent cfac4e0 commit 26d8120
Show file tree
Hide file tree
Showing 30 changed files with 93 additions and 69 deletions.
6 changes: 3 additions & 3 deletions tools/tests/common/analytic_fixture.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Tests
*/

#ifndef QPL_TEST_ANALYTICS_FIXTURE_HPP
#define QPL_TEST_ANALYTICS_FIXTURE_HPP
#ifndef QPL_TOOLS_TESTS_COMMON_ANALYTICS_FIXTURE_HPP
#define QPL_TOOLS_TESTS_COMMON_ANALYTICS_FIXTURE_HPP

#include <stdexcept>

Expand Down Expand Up @@ -211,4 +211,4 @@ class AnalyticFixture
};
} // namespace qpl::test

#endif //QPL_TEST_ANALYTICS_FIXTURE_HPP
#endif //QPL_TOOLS_TESTS_COMMON_ANALYTICS_FIXTURE_HPP
6 changes: 3 additions & 3 deletions tools/tests/common/analytic_mask_fixture.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TEST_ANALYTICS_MASK_FIXTURE_HPP
#define QPL_TEST_ANALYTICS_MASK_FIXTURE_HPP
#ifndef QPL_TOOLS_TESTS_COMMON_ANALYTICS_MASK_FIXTURE_HPP
#define QPL_TOOLS_TESTS_COMMON_ANALYTICS_MASK_FIXTURE_HPP

#include "analytic_fixture.hpp"

Expand Down Expand Up @@ -56,4 +56,4 @@ class AnalyticMaskFixture : public AnalyticFixture {
};
} // namespace qpl::test

#endif //QPL_TEST_ANALYTICS_MASK_FIXTURE_HPP
#endif //QPL_TOOLS_TESTS_COMMON_ANALYTICS_MASK_FIXTURE_HPP
6 changes: 3 additions & 3 deletions tools/tests/common/check_result.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Middle Layer API (private C++ API)
*/

#ifndef QPL_TESTS_TESTS_COMMON_CHECK_RESULT_HPP_
#define QPL_TESTS_TESTS_COMMON_CHECK_RESULT_HPP_
#ifndef QPL_TOOLS_TESTS_COMMON_CHECK_RESULT_HPP
#define QPL_TOOLS_TESTS_COMMON_CHECK_RESULT_HPP

#include <inttypes.h>
#include <vector>
Expand Down Expand Up @@ -116,4 +116,4 @@ static inline testing::AssertionResult compare_crc32_field(const qpl_job* job_pt
return testing::AssertionSuccess();
}

#endif //QPL_TESTS_TESTS_COMMON_CHECK_RESULT_HPP_
#endif //QPL_TOOLS_TESTS_COMMON_CHECK_RESULT_HPP
6 changes: 3 additions & 3 deletions tools/tests/common/common_defs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TESTS_COMMON_COMMON_DEFS_HPP_
#define QPL_TESTS_COMMON_COMMON_DEFS_HPP_
#ifndef QPL_TOOLS_TESTS_COMMON_COMMON_DEFS_HPP
#define QPL_TOOLS_TESTS_COMMON_COMMON_DEFS_HPP

// Required for PF testing.
// Based on the value, we choose to swap out the pages
// in src-1/src-2 (READ PF) or dst (WRITE PF).
typedef enum { READ_SRC_1_PAGE_FAULT, READ_SRC_2_PAGE_FAULT, WRITE_PAGE_FAULT } PageFaultType;

#endif // QPL_TESTS_COMMON_COMMON_DEFS_HPP_
#endif // QPL_TOOLS_TESTS_COMMON_COMMON_DEFS_HPP
6 changes: 3 additions & 3 deletions tools/tests/common/execution_wrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Test API (private C++ API)
*/

#ifndef QPL_TESTS_COMMON_EXECUTION_WRAPPER_HPP_
#define QPL_TESTS_COMMON_EXECUTION_WRAPPER_HPP_
#ifndef QPL_TOOLS_TESTS_COMMON_EXECUTION_WRAPPER_HPP
#define QPL_TOOLS_TESTS_COMMON_EXECUTION_WRAPPER_HPP

#include "qpl/qpl.h"

Expand All @@ -30,4 +30,4 @@ static inline auto run_job_api(qpl_job* job_ptr) {
}
} // namespace qpl::test

#endif //QPL_TESTS_COMMON_EXECUTION_WRAPPER_HPP_
#endif //QPL_TOOLS_TESTS_COMMON_EXECUTION_WRAPPER_HPP
6 changes: 3 additions & 3 deletions tools/tests/common/job_helper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_JOB_HELPER_HPP
#define QPL_JOB_HELPER_HPP
#ifndef QPL_TOOLS_TESTS_COMMON_JOB_HELPER_HPP
#define QPL_TOOLS_TESTS_COMMON_JOB_HELPER_HPP

#include "qpl/qpl.h"

Expand All @@ -23,4 +23,4 @@ static inline auto is_two_source_filtering(qpl_job* const job_ptr) {

} // namespace qpl::test::job_helper

#endif // QPL_JOB_HELPER_HPP
#endif // QPL_TOOLS_TESTS_COMMON_JOB_HELPER_HPP
6 changes: 3 additions & 3 deletions tools/tests/common/operation_test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TEST_OPERATION_TEST
#define QPL_TEST_OPERATION_TEST
#ifndef QPL_TOOLS_TESTS_OMMON_OPERATION_TEST_HPP
#define QPL_TOOLS_TESTS_OMMON_OPERATION_TEST_HPP

#include "qpl/qpl.h"

Expand Down Expand Up @@ -136,4 +136,4 @@ class ReferenceFixture : public JobFixture {
GTEST_TEST_(test_suite, test_name, fixture, testing::internal::GetTypeId<fixture>())
} // namespace qpl::test

#endif //QPL_TEST_OPERATION_TEST
#endif //QPL_TOOLS_TESTS_OMMON_OPERATION_TEST_HPP
6 changes: 3 additions & 3 deletions tools/tests/common/run_operation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TOOLS_TESTS_COMMON_RUN_OPERATION_HPP_
#define QPL_TOOLS_TESTS_COMMON_RUN_OPERATION_HPP_
#ifndef QPL_TOOLS_TESTS_COMMON_RUN_OPERATION_HPP
#define QPL_TOOLS_TESTS_COMMON_RUN_OPERATION_HPP

#include "qpl/qpl.h"

Expand Down Expand Up @@ -62,4 +62,4 @@ qpl_status run_expand_op(qpl_path_t execution_path);

} // namespace qpl::test

#endif // QPL_TOOLS_TESTS_COMMON_RUN_OPERATION_HPP_
#endif //QPL_TOOLS_TESTS_COMMON_RUN_OPERATION_HPP
6 changes: 3 additions & 3 deletions tools/tests/common/test_cases.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TEST_TEST_CASE_HPP
#define QPL_TEST_TEST_CASE_HPP
#ifndef QPL_TOOLS_TESTS_COMMON_TEST_CASES_HPP
#define QPL_TOOLS_TESTS_COMMON_TEST_CASES_HPP

#include <type_traits>
#include <vector>
Expand Down Expand Up @@ -238,4 +238,4 @@ class ReferenceFixtureWithTestCases
new testing::internal::TestFactoryImpl<GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)>); \
void GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)::RunSingleIteration()

#endif //QPL_TEST_TEST_CASE_HPP
#endif //QPL_TOOLS_TESTS_COMMON_TEST_CASES_HPP
6 changes: 3 additions & 3 deletions tools/tests/common/test_name_format.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TESTS_COMMON_TEST_NAME_FORMAT_HPP_
#define QPL_TESTS_COMMON_TEST_NAME_FORMAT_HPP_
#ifndef QPL_TOOLS_TESTS_COMMON_TEST_NAME_FORMAT_HPP
#define QPL_TOOLS_TESTS_COMMON_TEST_NAME_FORMAT_HPP

#define QPL_SUITE_NAME(type, api, tested_entity) type##_##api##_##tested_entity

#define QPL_LOW_LEVEL_SUITE_NAME(type, tested_entity) QPL_SUITE_NAME(type, c_api, tested_entity)

#define QPL_UNIT_SUITE_NAME(type, tested_entity) QPL_SUITE_NAME(type, unit_api, tested_entity)

#endif //QPL_TESTS_COMMON_TEST_NAME_FORMAT_HPP_
#endif //QPL_TOOLS_TESTS_COMMON_TEST_NAME_FORMAT_HPP
6 changes: 3 additions & 3 deletions tools/tests/common/test_sources.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Tests
*/

#ifndef QPL_TESTS_COMMON_TEST_SOURCES_HPP_
#define QPL_TESTS_COMMON_TEST_SOURCES_HPP_
#ifndef QPL_TOOLS_TESTS_COMMON_TEST_SOURCES_HPP
#define QPL_TOOLS_TESTS_COMMON_TEST_SOURCES_HPP

#include <stdexcept>
#include <vector>
Expand Down Expand Up @@ -99,4 +99,4 @@ class AnalyticCountersStream : public AnalyticStream {

} // namespace qpl::test

#endif //QPL_TESTS_COMMON_TEST_SOURCES_HPP_
#endif //QPL_TOOLS_TESTS_COMMON_TEST_SOURCES_HPP
6 changes: 3 additions & 3 deletions tools/tests/cross_tests/base_crc_test_fixture.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TESTS_CRC_TESTS_BASE_CRC_TEST_FIXTURE_HPP_
#define QPL_TESTS_CRC_TESTS_BASE_CRC_TEST_FIXTURE_HPP_
#ifndef QPL_TOOLS_TESTS_CROSS_TESTS_BASE_CRC_TEST_FIXTURE_HPP
#define QPL_TOOLS_TESTS_CROSS_TESTS_BASE_CRC_TEST_FIXTURE_HPP

#include <stdexcept>

Expand Down Expand Up @@ -59,4 +59,4 @@ class BaseCRCTestFixture : public testing::Test {

} // namespace qpl::test

#endif //QPL_TESTS_CRC_TESTS_BASE_CRC_TEST_FIXTURE_HPP_
#endif //QPL_TOOLS_TESTS_CROSS_TESTS_BASE_CRC_TEST_FIXTURE_HPP
6 changes: 3 additions & 3 deletions tools/tests/cross_tests/base_cross_test_fixture.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TESTS_CROSS_TESTS_BASE_CROSS_TEST_FIXTURE_HPP_
#define QPL_TESTS_CROSS_TESTS_BASE_CROSS_TEST_FIXTURE_HPP_
#ifndef QPL_TOOLS_TESTS_CROSS_TESTS_BASE_CROSS_TEST_FIXTURE_HPP
#define QPL_TOOLS_TESTS_CROSS_TESTS_BASE_CROSS_TEST_FIXTURE_HPP

#include <stdexcept>

Expand Down Expand Up @@ -60,4 +60,4 @@ class BaseCrossTestFixture : public testing::Test {

} // namespace qpl::test

#endif //QPL_TESTS_CROSS_TESTS_BASE_CROSS_TEST_FIXTURE_HPP_
#endif //QPL_TOOLS_TESTS_CROSS_TESTS_BASE_CROSS_TEST_FIXTURE_HPP
6 changes: 3 additions & 3 deletions tools/tests/cross_tests/canned_test_cases.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_CANNED_TEST_CASES_HPP_
#define QPL_CANNED_TEST_CASES_HPP_
#ifndef QPL_TOOLS_TESTS_CROSS_TESTS_CANNED_TEST_CASES_HPP
#define QPL_TOOLS_TESTS_CROSS_TESTS_CANNED_TEST_CASES_HPP

// tool_common
#include "source_provider.hpp"
Expand All @@ -20,4 +20,4 @@ struct SimpleCannedOneChuckTestCase {
std::ostream& operator<<(std::ostream& os, const SimpleCannedOneChuckTestCase& test_case);
} // namespace qpl::test

#endif //QPL_CANNED_TEST_CASES_HPP_
#endif //QPL_TOOLS_TESTS_CROSS_TESTS_CANNED_TEST_CASES_HPP
6 changes: 3 additions & 3 deletions tools/tests/cross_tests/crc32_test_cases.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_CRC32_TEST_CASES_HPP_
#define QPL_CRC32_TEST_CASES_HPP_
#ifndef QPL_TOOLS_TESTS_CROSS_TESTS_CRC32_TEST_CASES_HPP
#define QPL_TOOLS_TESTS_CROSS_TESTS_CRC32_TEST_CASES_HPP

// tool_common
#include "source_provider.hpp"
Expand All @@ -22,4 +22,4 @@ struct SimpleCRC32TestCase {
std::ostream& operator<<(std::ostream& os, const SimpleCRC32TestCase& test_case);
} // namespace qpl::test

#endif //QPL_CRC32_TEST_CASES_HPP_
#endif //QPL_TOOLS_TESTS_CROSS_TESTS_CRC32_TEST_CASES_HPP
6 changes: 3 additions & 3 deletions tools/tests/cross_tests/deflate_test_cases.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_DEFLATE_TEST_CASES_HPP_
#define QPL_DEFLATE_TEST_CASES_HPP_
#ifndef QPL_TOOLS_TESTS_CROSS_TESTS_DEFLATE_TEST_CASES_HPP
#define QPL_TOOLS_TESTS_CROSS_TESTS_DEFLATE_TEST_CASES_HPP

// tool_common
#include "source_provider.hpp"
Expand All @@ -25,4 +25,4 @@ struct SimpleDeflateTestCase {
std::ostream& operator<<(std::ostream& os, const SimpleDeflateTestCase& test_case);
} // namespace qpl::test

#endif //QPL_DEFLATE_TEST_CASES_HPP_
#endif //QPL_TOOLS_TESTS_CROSS_TESTS_DEFLATE_TEST_CASES_HPP
6 changes: 3 additions & 3 deletions tools/tests/cross_tests/huffman_only_test_cases.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_HUFFMAN_ONLY_TEST_CASES_HPP_
#define QPL_HUFFMAN_ONLY_TEST_CASES_HPP_
#ifndef QPL_TOOLS_TESTS_CROSS_TESTS_HUFFMAN_ONLY_TEST_CASES_HPP
#define QPL_TOOLS_TESTS_CROSS_TESTS_HUFFMAN_ONLY_TEST_CASES_HPP

// tool_common
#include "source_provider.hpp"
Expand All @@ -21,4 +21,4 @@ struct SimpleHuffmanOnlyTestCase {
std::ostream& operator<<(std::ostream& os, const SimpleHuffmanOnlyTestCase& test_case);
} // namespace qpl::test

#endif //QPL_HUFFMAN_ONLY_TEST_CASES_HPP_
#endif //QPL_TOOLS_TESTS_CROSS_TESTS_HUFFMAN_ONLY_TEST_CASES_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TESTS_FUNCTIONAL_ALGORITHMIC_TESTS_LOW_LEVEL_API_COMMON_H_
#define QPL_TESTS_FUNCTIONAL_ALGORITHMIC_TESTS_LOW_LEVEL_API_COMMON_H_
#ifndef QPL_TOOLS_TESTS_FUNCTIONAL_ALGORITHMIC_TESTS_LOW_LEVEL_API_TA_LLCOMMON_HPP
#define QPL_TOOLS_TESTS_FUNCTIONAL_ALGORITHMIC_TESTS_LOW_LEVEL_API_TA_LLCOMMON_HPP

// tests_common
#include "check_result.hpp"
Expand All @@ -21,4 +21,4 @@
#define QPL_LOW_LEVEL_API_ALGORITHMIC_TEST_TC(operation, test, test_fixture) \
QPL_TEST_TC_(ta##_c_api_##operation, test, test_fixture, testing::internal::GetTypeId<test_fixture>())

#endif //QPL_TESTS_FUNCTIONAL_ALGORITHMIC_TESTS_LOW_LEVEL_API_COMMON_H_
#endif //QPL_TOOLS_TESTS_FUNCTIONAL_ALGORITHMIC_TESTS_LOW_LEVEL_API_TA_LLCOMMON_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TESTS_FUNCTIONAL_BADARG_TESTS_LOW_LEVEL_API_COMMON_H_
#define QPL_TESTS_FUNCTIONAL_BADARG_TESTS_LOW_LEVEL_API_COMMON_H_
#ifndef QPL_TOOLS_TESTS_FUNCTIONAL_BAD_ARGUMENT_TESTS_LOW_LEVEL_API_TB_LL_COMMON_HPP
#define QPL_TOOLS_TESTS_FUNCTIONAL_BAD_ARGUMENT_TESTS_LOW_LEVEL_API_TB_LL_COMMON_HPP

#include <array>
#include <memory>
Expand Down Expand Up @@ -374,4 +374,4 @@ static inline void check_source_size_not_enough_to_hold_num_input_elements(qpl_j
<< "Fail on: provided number of elements does not fit into the source size";
}

#endif //QPL_TESTS_FUNCTIONAL_BADARG_TESTS_LOW_LEVEL_API_COMMON_H_
#endif //QPL_TOOLS_TESTS_FUNCTIONAL_BAD_ARGUMENT_TESTS_LOW_LEVEL_API_TB_LL_COMMON_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TESTS_NEGATIVE_TESTS_BASE_ANALYTIC_NEGATIVE_TEST_FIXTURE_HPP_
#define QPL_TESTS_NEGATIVE_TESTS_BASE_ANALYTIC_NEGATIVE_TEST_FIXTURE_HPP_
#ifndef QPL_TOOLS_TESTS_FUNCTIONAL_NEGATIVE_TESTS_LOW_LEVEL_API_BASE_ANALYTIC_NEGATIVE_TEST_FIXTURE_HPP
#define QPL_TOOLS_TESTS_FUNCTIONAL_NEGATIVE_TESTS_LOW_LEVEL_API_BASE_ANALYTIC_NEGATIVE_TEST_FIXTURE_HPP

#include "tn_common.hpp"

Expand Down Expand Up @@ -183,4 +183,4 @@ class BaseAnalyticsNegativeTestFixture : public JobFixture {
ASSERT_TRUE(ValidateCompressedInputErrorHandling()); \
}
} // namespace qpl::test
#endif //QPL_TESTS_NEGATIVE_TESTS_BASE_ANALYTIC_NEGATIVE_TEST_FIXTURE_HPP_
#endif //QPL_TOOLS_TESTS_FUNCTIONAL_NEGATIVE_TESTS_LOW_LEVEL_API_BASE_ANALYTIC_NEGATIVE_TEST_FIXTURE_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TESTS_FUNCTIONAL_NEGATIVE_TESTS_LOW_LEVEL_API_COMMON_H_
#define QPL_TESTS_FUNCTIONAL_NEGATIVE_TESTS_LOW_LEVEL_API_COMMON_H_
#ifndef QPL_TOOLS_TESTS_FUNCTIONAL_NEGATIVE_TESTS_LOW_LEVEL_API_TN_COMMON_HPP
#define QPL_TOOLS_TESTS_FUNCTIONAL_NEGATIVE_TESTS_LOW_LEVEL_API_TN_COMMON_HPP

#include "gtest/gtest.h"

Expand All @@ -18,4 +18,4 @@

#define QPL_LOW_LEVEL_API_NEGATIVE_TEST(test_suite_name, test_name) GTEST_TEST(tn_c_api_##test_suite_name, test_name)

#endif //QPL_TESTS_FUNCTIONAL_NEGATIVE_TESTS_LOW_LEVEL_API_COMMON_H_
#endif //QPL_TOOLS_TESTS_FUNCTIONAL_NEGATIVE_TESTS_LOW_LEVEL_API_TN_COMMON_HPP
6 changes: 3 additions & 3 deletions tools/tests/functional/unit_tests/algorithmic/t_common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* SPDX-License-Identifier: MIT
******************************************************************************/

#ifndef QPL_TESTS_FUNCTIONAL_UNIT_TESTS_API_COMMON_H_
#define QPL_TESTS_FUNCTIONAL_UNIT_TESTS_API_COMMON_H_
#ifndef QPL_TOOLS_TESTS_FUNCTIONAL_UNIT_TESTS_ALGORITMIC_T_COMMON_HPP
#define QPL_TOOLS_TESTS_FUNCTIONAL_UNIT_TESTS_ALGORITMIC_T_COMMON_HPP

#include "gtest/gtest.h"

Expand All @@ -17,4 +17,4 @@

#define QPL_UNIT_API_BAD_ARGUMENT_TEST(entity, test) TEST(QPL_UNIT_SUITE_NAME(tb, entity), test)

#endif //QPL_TESTS_FUNCTIONAL_UNIT_TESTS_API_COMMON_H_
#endif //QPL_TOOLS_TESTS_FUNCTIONAL_UNIT_TESTS_ALGORITMIC_T_COMMON_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
*
* SPDX-License-Identifier: MIT
******************************************************************************/
#ifndef QPL_TOOLS_TESTS_FUZZING_LOW_LEVEL_API_DEFLATE_CANNED_DICT_FUZZ_TEST_HPP
#define QPL_TOOLS_TESTS_FUZZING_LOW_LEVEL_API_DEFLATE_CANNED_DICT_FUZZ_TEST_HPP

#include <iostream>
#include <memory>
Expand Down Expand Up @@ -113,3 +115,5 @@ static inline int deflate_canned_dict_fuzz(const uint8_t* Data, size_t Size, qpl

return 0;
}

#endif //QPL_TOOLS_TESTS_FUZZING_LOW_LEVEL_API_DEFLATE_CANNED_DICT_FUZZTEST_HPP
Loading

0 comments on commit 26d8120

Please sign in to comment.