LCOV - code coverage report
Current view: top level - src/test/fuzz - eval_script.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 100.0 % 14 14
Test Date: 2024-09-01 05:20:30 Functions: 100.0 % 3 3
Branches: 66.7 % 12 8

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2009-2021 The Bitcoin Core developers
       2                 :             : // Distributed under the MIT software license, see the accompanying
       3                 :             : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       4                 :             : 
       5                 :             : #include <pubkey.h>
       6                 :             : #include <script/interpreter.h>
       7                 :             : #include <test/fuzz/FuzzedDataProvider.h>
       8                 :             : #include <test/fuzz/fuzz.h>
       9                 :             : 
      10                 :             : #include <limits>
      11                 :             : 
      12   [ +  -  +  - ]:        1738 : FUZZ_TARGET(eval_script)
      13                 :             : {
      14                 :        1735 :     FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
      15                 :        1735 :     const unsigned int flags = fuzzed_data_provider.ConsumeIntegral<unsigned int>();
      16                 :        3470 :     const std::vector<uint8_t> script_bytes = [&] {
      17         [ +  + ]:        1735 :         if (fuzzed_data_provider.remaining_bytes() != 0) {
      18                 :        1728 :             return fuzzed_data_provider.ConsumeRemainingBytes<uint8_t>();
      19                 :             :         } else {
      20                 :             :             // Avoid UBSan warning:
      21                 :             :             //   test/fuzz/FuzzedDataProvider.h:212:17: runtime error: null pointer passed as argument 1, which is declared to never be null
      22                 :             :             //   /usr/include/string.h:43:28: note: nonnull attribute specified here
      23                 :           7 :             return std::vector<uint8_t>();
      24                 :             :         }
      25                 :        1735 :     }();
      26         [ +  - ]:        1735 :     const CScript script(script_bytes.begin(), script_bytes.end());
      27         [ +  + ]:        5205 :     for (const auto sig_version : {SigVersion::BASE, SigVersion::WITNESS_V0}) {
      28                 :        3470 :         std::vector<std::vector<unsigned char>> stack;
      29         [ +  - ]:        3470 :         (void)EvalScript(stack, script, flags, BaseSignatureChecker(), sig_version, nullptr);
      30                 :        3470 :     }
      31                 :        1735 : }
        

Generated by: LCOV version 2.0-1