Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI timeouts #30851

Closed
maflcko opened this issue Sep 9, 2024 · 32 comments
Closed

CI timeouts #30851

maflcko opened this issue Sep 9, 2024 · 32 comments
Labels

Comments

@maflcko
Copy link
Member

maflcko commented Sep 9, 2024

Looks like some CI tasks are timing out, starting a few days ago.

It would be good to investigate and fix the problem.

A quick glance on the ccache stats may indicate that ccache stopped working for some tasks.

However, CI should also pass with a clean ccache, so the issue may be a different one, or there may be more than one issue.

@fanquake
Copy link
Member

fanquake commented Sep 9, 2024

A quick glance on the ccache stats may indicate that ccache stopped working for some tasks.

Yea, seems like our ccache efficiency has tanked post-CMake. Is it possible this is somehow a stagnant cache or related issue (although given it's been 2 weeks since the switch, I'd think caches would have cycled)?.

ccache hits for some CI jobs of the last merge into master (https://github.com/bitcoin/bitcoin/runs/29789973072):

32-bit CentOS : Hits: 1 / 715 (0.14 %)
Win64 Cross: Hits: 1 / 713 ( 0.14%)
32 -bit multiprocess: Hits: 76 / 747 (10.17%)
macOS native: Hits: 330 / 717 (46.03%)
*SAN job: Hits: 347 / 720 (48.19%)
Tidy job: Hits: 572 / 720 (79.44%)
Previous releases: Hits: 589 / 724 (81.35 %)

However, CI should also pass with a clean ccache, so the issue may be a different one, or there may be more than one issue.

Right, and given that Previous releases seems to be timing out, even with 80% ccache hits, it seems there could be another issue (unless it was already on the borderline).

@hebasto
Copy link
Member

hebasto commented Sep 9, 2024

@maflcko

Can you clear all ccache caches so that we can observe the CI jobs under these conditions?

@hebasto
Copy link
Member

hebasto commented Sep 9, 2024

A quick glance on the ccache stats may indicate that ccache stopped working for some tasks.

Yea, seems like our ccache efficiency has tanked post-CMake.

I believe that https://cirrus-ci.com/build/5697885973512192 is more representative, as the change is docs-only.

As for Win64 Cross, the statistics shows Hits: 120 / 713 (16.83%), which also looks questionable.

@hebasto hebasto added the Tests label Sep 9, 2024
@maflcko
Copy link
Member Author

maflcko commented Sep 9, 2024

The CI machines may work on pull requests, which may (in)validate the cache, so ccache stats may generally not be 100% reliable.

It is possible to trigger a run with a clean cache volume locally (by deleting all volumes), or on CI, by creating a new namespace for the volumes:

diff --git a/ci/test/02_run_container.sh b/ci/test/02_run_container.sh
index afd447c347..53c0b4d8bc 100755
--- a/ci/test/02_run_container.sh
+++ b/ci/test/02_run_container.sh
@@ -25,15 +25,15 @@ if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
       --tag="${CONTAINER_NAME}" \
       "${BASE_READ_ONLY_DIR}"
 
-  docker volume create "${CONTAINER_NAME}_ccache" || true
-  docker volume create "${CONTAINER_NAME}_depends" || true
-  docker volume create "${CONTAINER_NAME}_depends_sources" || true
-  docker volume create "${CONTAINER_NAME}_previous_releases" || true
-
-  CI_CCACHE_MOUNT="type=volume,src=${CONTAINER_NAME}_ccache,dst=$CCACHE_DIR"
-  CI_DEPENDS_MOUNT="type=volume,src=${CONTAINER_NAME}_depends,dst=$DEPENDS_DIR/built"
-  CI_DEPENDS_SOURCES_MOUNT="type=volume,src=${CONTAINER_NAME}_depends_sources,dst=$DEPENDS_DIR/sources"
-  CI_PREVIOUS_RELEASES_MOUNT="type=volume,src=${CONTAINER_NAME}_previous_releases,dst=$PREVIOUS_RELEASES_DIR"
+  docker volume create "new_${CONTAINER_NAME}_ccache" || true
+  docker volume create "new_${CONTAINER_NAME}_depends" || true
+  docker volume create "new_${CONTAINER_NAME}_depends_sources" || true
+  docker volume create "new_${CONTAINER_NAME}_previous_releases" || true
+
+  CI_CCACHE_MOUNT="type=volume,src=new_${CONTAINER_NAME}_ccache,dst=$CCACHE_DIR"
+  CI_DEPENDS_MOUNT="type=volume,src=new_${CONTAINER_NAME}_depends,dst=$DEPENDS_DIR/built"
+  CI_DEPENDS_SOURCES_MOUNT="type=volume,src=new_${CONTAINER_NAME}_depends_sources,dst=$DEPENDS_DIR/sources"
+  CI_PREVIOUS_RELEASES_MOUNT="type=volume,src=new_${CONTAINER_NAME}_previous_releases,dst=$PREVIOUS_RELEASES_DIR"
 
   if [ "$DANGER_CI_ON_HOST_CACHE_FOLDERS" ]; then
     # ensure the directories exist

@fanquake
Copy link
Member

fanquake commented Sep 9, 2024

I believe that https://cirrus-ci.com/build/5697885973512192 is more representative, as the change is docs-only.

Possibly, but this still looks all over the place:

32-bit CENTOS Hits: 0 / 715 (0.00 %)
arm: Hits: 3 / 713 ( 0.42%)
Win64 cross: Hits: 120 / 713 (16.83%)
mac cross: Hits: 144 / 726 (19.83%)
TSAN Hits: 165 / 724 (22.79%)
No wallet, kernel: Hits: 307 / 695 (44.17%)
MSAN: Hits: 290 / 645 (44.96%)
Fuzzer: Hits: 281 / 447 (62.86%)

The CI machines may work on pull requests, which may (in)validate the cache, so ccache stats may generally not be 100% reliable.

Do we have any scope to increase the size of the ccache cache, to reduce the likelyhood of this?

@willcl-ark
Copy link
Member

willcl-ark commented Sep 9, 2024

Can we not bump the ccache size on the (cirrus) workflows which we use self-hosted runners for? Currently these values are pretty low IMO, 100-400MB.

These ccaches IIUC are mounted volumes from the runner host itself, and don't need to be e.g. restored from a GitHub Actions cache, so do not need to be constrained the same as is best for those workflows.

Even at 1GB per cache, this would be 12GB total size, and so should be fine on an 80 or 160GB disk?

edit: ah I see fanquake got here first...

@maflcko
Copy link
Member Author

maflcko commented Sep 9, 2024

About the cache issue, a better solution may be to set CCACHE_READONLY in pull requests.

However, the CI timeout issue seems to be of a different cause, because the runtime for the unit tests shouldn't fluctuate by 100%: https://cirrus-ci.com/task/4803595281891328?logs=ci#L8618 vs https://cirrus-ci.com/task/4981166594326528?logs=ci#L9169

@fanquake
Copy link
Member

fanquake commented Sep 9, 2024

Thought this might just be constrained to that job, but:
ASAN (currently running PR): Total Test time (real) = 1068.87 sec
ASAN (master finished 23 minutes ago): Total Test time (real) = 498.22 sec.

@maflcko
Copy link
Member Author

maflcko commented Sep 9, 2024

Asan is running on GHA infra, so this highlights that the issue may not be infra related, but related to the code, config or build files in this repo?

@fanquake
Copy link
Member

Yea. Seems like it is also not a difference between PRs and merge commits, given that now the current merge run is slow, and a simultaneously running PR is fast:
ASAN (most recent merge commit): Total Test time (real) = 1086.64 sec.
ASAN (current PR run): Total Test time (real) = 510.99 sec.

@maflcko
Copy link
Member Author

maflcko commented Sep 10, 2024

It also doesn't look cmake related, because the latest 28.x build also times out: https://github.com/bitcoin/bitcoin/runs/29755145359

@maflcko
Copy link
Member Author

maflcko commented Sep 11, 2024

One contributing factor to the timeouts may be a recently introduced bug in the exclude parsing #30244 (comment), which affects one specific CI task. However this still does not explain why suddenly all(?) CI tasks in all branches (at least master, 28.x) are affected.

@maflcko
Copy link
Member Author

maflcko commented Sep 12, 2024

macOS also seems to time out: https://github.com/bitcoin/bitcoin/actions/runs/10828462406/job/30043878794 on GHA

@willcl-ark
Copy link
Member

willcl-ark commented Sep 12, 2024

I opened #30879 to re-bucket these tests which are taking a few minutes longer on CI than they are bucketed for. It's not much difference, but may help a little.

@maflcko
Copy link
Member Author

maflcko commented Sep 12, 2024

Yeah, I think we keep finding small mistakes, but there still must be a large underlying problem. In all the years, I've never seen the CI go from working fine to a large chunk of tasks timing out after 2(!) hours with no apparent reason, even across completely separate infrastructures (GHA, Cirrus workers)

fanquake added a commit that referenced this issue Sep 12, 2024
72b46f2 test: fix exclude parsing for functional runner (Max Edwards)

Pull request description:

  This restores previous behaviour of being able to exclude a test by name without having to specify .py extension.

  It was noticed in #30851 that tests were no longer being excluded.

  PR #30244 introduced being able to exclude a specific tests based on args (such as `--exclude "rpc_bind.py --ipv6`) but it made the wrong assumption that test names intended to be excluded would include the .py extension.

  The following #30244 (comment) shows that this is not how the `--exclude` flag was used in CI.

  #30244 (comment) gave three examples of `--exclude` being used in CI so I compared the number of tests that the runner would run for these three examples in three situations, before #30244 was introduced, in master today and with this PR applied.

  Example:

  `--previous-releases --coverage --extended --exclude feature_dbcrash`

  Test count:
  Before #30244 introduced: 314
  Master: 315
  With this PR: 314

  Example:

  `--exclude feature_init,rpc_bind,feature_bind_extra`

  Test count:
  Before #30244 introduced: 306
  Master 311
  With this PR: 306

  Example:

  `--exclude rpc_bind,feature_bind_extra`

  Before #30244 introduced:  307
  Master 311
  With this PR: 307

  I've also tested that the functionality introduced with #30244 remains and we can still exclude specific tests by argument.

ACKs for top commit:
  maflcko:
    review ACK 72b46f2
  willcl-ark:
    ACK 72b46f2

Tree-SHA512: 37c0e3115f4e3efdf9705f4ff8cd86a5cc906aacc1ab26b0f767f5fb6a953034332b29b0667073f8382a48a2fe9d649b7e60493daf04061260adaa421419d8c8
@maflcko
Copy link
Member Author

maflcko commented Sep 12, 2024

I recreated a CI timeout and the machine's CPU was idle flat at 0% for most of the part for 2 hours, but I didn't look where it spent so much time "doing nothing".

@willcl-ark
Copy link
Member

I recreated a CI timeout and the machine's CPU was idle flat at 0% for most of the part for 2 hours, but I didn't look where it spent so much time "doing nothing".

I have noticed this in the cirrus GUI before, it seems to have always been like this though IIRC:

e.g. https://cirrus-ci.com/task/6481793086390272 :
image

or a random pre-cmake run: https://cirrus-ci.com/task/6010695337115648

Perhaps these shared machines are hitting other IO limits? Doesn't seems to be much other explanation for it. Out of interest, what configuration did you use to re-create CI resources? I'd like to be able to do the same.

For compaison (with 0%) this is what I see when running unit and funcitonal tests locally (not a clean system, but gets the rough idea)

image

20 - 75s is waiting for these to complete:

133/134 Test #5: noverify_tests ....................... Passed 36.41 sec
134/134 Test #6: tests ................................ Passed 76.79 sec

And the drop-off towards the end is the longer-running functional tests completing:

Remaining jobs: [feature_assumeutxo.py, p2p_node_network_limited.py --v1transport, p2p_node_network_limited.py --v2transport, p2p_permissions.py, feature_config_args.py, p2p_handshake.py, p2p_handshake.py --v2transport, p2p_ibd_txrelay.py, p2p_seednode.py]

I will try a local CI run soon and see what that looks like, and if there's any difference.

@hebasto
Copy link
Member

hebasto commented Sep 13, 2024

20 - 75s is waiting for these to complete:

133/134 Test #5: noverify_tests ....................... Passed 36.41 sec
134/134 Test #6: tests ................................ Passed 76.79 sec

This part is addressed in bitcoin-core/secp256k1#1581.

@maflcko
Copy link
Member Author

maflcko commented Sep 13, 2024

I have noticed this in the cirrus GUI before, it seems to have always been like this though IIRC:

Yeah, I think the graph there are not accurate and a bit misleading. It may be best to ignore them. I used a CPX51 Hetzner Box with 16 vCPU, which should be enough to run any CI task with a completely empty cache. I just looked at the CPU/IO usage in the Cloud Console Graph.

Perhaps these shared machines are hitting other IO limits? Doesn't seems to be much other explanation for it. Out of interest, what configuration did you use to re-create CI resources? I'd like to be able to do the same.

It is certainly possible that this could be an IO limit, but the other graphs were also at 0%, so the most plausible explanation would be that this is a network IO limit, not something local. I couldn't reproduce since then, but I keep trying to reproduce.

I could reproduce the macOS 2h timeout issue on GHA yesterday. However, today I also fail to reproduce them.

@maflcko
Copy link
Member Author

maflcko commented Sep 13, 2024

network IO

Reminds me that Cirrus Logs are randomly disappearing. So maybe there is an issue in the Cirrus backend that streams logs and the streaming process dies or turns into a zombie process?

@maflcko
Copy link
Member Author

maflcko commented Sep 13, 2024

Some examples:

Edit: https://www.github.com/cirruslabs/cirrus-ci-docs/issues/1294

@maflcko
Copy link
Member Author

maflcko commented Sep 15, 2024

I could reproduce the macOS 2h timeout issue on GHA yesterday. However, today I also fail to reproduce them.

Actually, it looks like the GHA macOS CI timeouts remain today, for example: https://github.com/bitcoin/bitcoin/actions/runs/10833854937/job/30163805645?pr=30866 or https://github.com/bitcoin/bitcoin/actions/runs/10829942238/job/30163952659?pr=30856

I am not really familiar with GHA, nor with macOS, so it would be good if someone else checked:

  • Does the macOS 13 GHA task succeed at all with an empty cache?
  • Does the M1 (macOS 14) GHA runner give a better performance?

Ref: https://docs.github.com/en/actions/writing-workflows/choosing-where-your-workflow-runs/choosing-the-runner-for-a-job#standard-github-hosted-runners-for-public-repositories

@hebasto
Copy link
Member

hebasto commented Sep 16, 2024

I am not really familiar with GHA, nor with macOS, so it would be good if someone else checked:

  • Does the macOS 13 GHA task succeed at all with an empty cache?

https://github.com/hebasto/bitcoin/actions/runs/10880757045 (caches have been cleaned for all jobs)

@hebasto
Copy link
Member

hebasto commented Sep 16, 2024

I am not really familiar with GHA, nor with macOS, so it would be good if someone else checked:

  • Does the M1 (macOS 14) GHA runner give a better performance?

https://github.com/hebasto/bitcoin/actions/runs/10881199478/job/30189639531

@maflcko
Copy link
Member Author

maflcko commented Sep 16, 2024

Thanks. So it looks like even with an empty cache, the macOS 13 GHA can complete in less than 50 minutes, way less than the 2h timeout. Also, the macOS 14 GHA may complete even faster in less than 40 minutes.

Not sure if this helps to debug this issue. Maybe #30866 and #30856 are based on an old(er) commit, which may be used by GitHub to run the CI. So I guess, rerunning them via the web interface won't help and a rebase could be considered.

(Unrelated to this issue, one could consider moving to the M1 runners, given that they may speed up the build. Is the removal of sudo xcode-select --switch /Applications/Xcode_15.0.app required? Personally I find it useful to have the minimum supported xcode version documented and checked by CI.)

@maflcko
Copy link
Member Author

maflcko commented Sep 17, 2024

I did a macOS 13 GHA run (https://github.com/maflcko/bitcoin-core-with-ci/actions/runs/10886978505/job/30208236022) and it failed with: 2024-09-16T15:55:29.8666110Z �[0;34m node0 stderr Error: A fatal internal error occurred, see debug.log for details: Corrupt block found indicating potential hardware failure. �[0m in feature_block.py on ~master.

So possibly Github could be facing hardware issues on macOS, leading to other issues down the line?

@maflcko
Copy link
Member Author

maflcko commented Sep 17, 2024

(Unrelated to this issue, one could consider moving to the M1 runners, given that they may speed up the build. Is the removal of sudo xcode-select --switch /Applications/Xcode_15.0.app required? Personally I find it useful to have the minimum supported xcode version documented and checked by CI.)

Proposed alternative in #30913

@maflcko
Copy link
Member Author

maflcko commented Sep 17, 2024

I am seeing a 2h timeout on running clang --version, even before any CI-specific code is run: https://github.com/maflcko/bitcoin-core-with-ci/actions/runs/10897268811/job/30238399156

So I fail to see how this could be anything other than a GitHub hardware, software, or data corruption bug.

I don't think this can be fixed on our side, apart from removing the task.

@maflcko
Copy link
Member Author

maflcko commented Sep 18, 2024

Closing for now. Possibly commit a95e742 (x86_64-apple-darwin22.6.0 -> arm64-apple-darwin23.6.0) may have switched to using more recent hardware, which may be less likely to be corrupt.

In any case, if someone is still seeing a CI timeout (that is a CI failure caused by a 2 hour timeout), or a CI task that takes longer than half of the timeout (1h), it would be good to mention it either in this issue, or in a new issue.

The 2 hour CI timeout is picked, so that even with an empty ccache, the CI is able to easily pass. It only exists to catch real timeouts (network timeout, zombie process, infinite sleep, infinite loop, ...). Any task taking longer than half the overall task timeout should be tracked down and fixed.

@maflcko maflcko closed this as completed Sep 18, 2024
@maflcko
Copy link
Member Author

maflcko commented Sep 20, 2024

Looks like this is still a problem. The macOS 14 task was able to finish in less than 30 minutes, even without a ccache at all.

Now it is stuck again for more than 90 minutes: https://github.com/bitcoin/bitcoin/actions/runs/10956545011/job/30422825062?pr=30935#step:7:3249

@maflcko
Copy link
Member Author

maflcko commented Sep 20, 2024

The full tail of the log is below. It shows that 202 fuzz targets have been selected, but only 201 completed.

Not sure which one is missing, but it seems odd that one target would take more than 1.5 hours, when previously everything passed in less than .5 hours.

full log tail
2024-09-20T09:37:21.3001180Z ALL                                                      | ✓ Passed  | 2778 s (accumulated) 
2024-09-20T09:37:21.3001780Z �[0mRuntime: 447 s
2024-09-20T09:37:21.3002010Z 
2024-09-20T09:37:21.3002190Z + '[' false = true ']'
2024-09-20T09:37:21.3002570Z + '[' true = true ']'
2024-09-20T09:37:21.3003690Z + LD_LIBRARY_PATH=/Users/runner/work/bitcoin/bitcoin/depends/aarch64-apple-darwin23.6.0/lib
2024-09-20T09:37:21.3005210Z + test/fuzz/test_runner.py -j10 -l DEBUG /Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/ --empty_min_time=60
2024-09-20T09:37:21.4782000Z 202 fuzz target(s) found: addition_overflow addr_info_deserialize address_deserialize addrman addrman_serdeser asmap asmap_direct autofile banman base_encode_decode bech32 bip324_cipher_roundtrip bip324_ecdh bitdeque bitset block block_deserialize block_file_info_deserialize block_filter_deserialize block_header block_header_and_short_txids_deserialize block_index blockfilter blockheader_deserialize blocklocator_deserialize blockmerkleroot blocktransactions_deserialize blocktransactionsrequest_deserialize blockundo_deserialize bloom_filter bloomfilter_deserialize buffered_file build_and_compare_feerate_diagram chacha20_split_crypt chacha20_split_keystream chain checkqueue clusterlin_add_dependency clusterlin_ancestor_finder clusterlin_chunking clusterlin_cluster_serialization clusterlin_components clusterlin_depgraph_serialization clusterlin_linearization_chunking clusterlin_linearize clusterlin_make_connected clusterlin_merge clusterlin_postlinearize clusterlin_postlinearize_moved_leaf clusterlin_postlinearize_tree clusterlin_search_finder coin_grinder coin_grinder_is_optimal coincontrol coins_deserialize coins_view coinscache_sim coinselection connman crypter crypto crypto_aeadchacha20poly1305 crypto_aes256 crypto_aes256cbc crypto_chacha20 crypto_common crypto_diff_fuzz_chacha20 crypto_fschacha20 crypto_fschacha20poly1305 crypto_hkdf_hmac_sha256_l32 crypto_poly1305 crypto_poly1305_split cuckoocache data_stream_addr_man decode_tx descriptor_parse diskblockindex_deserialize ellswift_roundtrip eval_script fee_rate fee_rate_deserialize feefrac fees flat_file_pos_deserialize flatfile float golomb_rice headers_sync_state hex http_request i2p integer inv_deserialize key key_io key_origin_info_deserialize kitchen_sink load_external_block_file local_address locale merkle_block_deserialize merkleblock message messageheader_deserialize mini_miner mini_miner_selection miniscript_script miniscript_smart miniscript_stable miniscript_string minisketch mocked_descriptor_parse muhash multiplication_overflow net net_permissions netaddr_deserialize netaddress netbase_dns_lookup node_eviction out_point_deserialize p2p_handshake p2p_headers_presync p2p_transport_bidirectional p2p_transport_bidirectional_v1v2 p2p_transport_bidirectional_v2 p2p_transport_serialization package_rbf parse_hd_keypath parse_iso8601 parse_numbers parse_script parse_univalue partial_merkle_tree_deserialize partially_downloaded_block partially_signed_transaction_deserialize policy_estimator policy_estimator_io pool_resource pow pow_transition prefilled_transaction_deserialize prevector primitives_transaction process_message process_messages protocol psbt psbt_input_deserialize psbt_output_deserialize pub_key_deserialize random rbf rolling_bloom_filter rpc script script_descriptor_cache script_deserialize script_flags script_format script_interpreter script_ops script_parsing script_sigcache script_sign scriptnum_ops scriptpubkeyman secp256k1_ec_seckey_import_export_der secp256k1_ecdsa_signature_parse_der_lax service_deserialize signature_checker signet snapshotmetadata_deserialize socks5 span str_printf string system timeoffsets torcontrol transaction tx_in tx_in_deserialize tx_out tx_package_eval tx_pool tx_pool_standard txorphan txoutcompressor_deserialize txrequest txundo_deserialize uint160_deserialize uint256_deserialize utxo_snapshot utxo_snapshot_invalid utxo_total_supply validation_load_mempool vecdeque versionbits wallet_bdb_parser wallet_fees wallet_notifications
2024-09-20T09:37:21.4806770Z 202 of 202 detected fuzz target(s) selected: addition_overflow addr_info_deserialize address_deserialize addrman addrman_serdeser asmap asmap_direct autofile banman base_encode_decode bech32 bip324_cipher_roundtrip bip324_ecdh bitdeque bitset block block_deserialize block_file_info_deserialize block_filter_deserialize block_header block_header_and_short_txids_deserialize block_index blockfilter blockheader_deserialize blocklocator_deserialize blockmerkleroot blocktransactions_deserialize blocktransactionsrequest_deserialize blockundo_deserialize bloom_filter bloomfilter_deserialize buffered_file build_and_compare_feerate_diagram chacha20_split_crypt chacha20_split_keystream chain checkqueue clusterlin_add_dependency clusterlin_ancestor_finder clusterlin_chunking clusterlin_cluster_serialization clusterlin_components clusterlin_depgraph_serialization clusterlin_linearization_chunking clusterlin_linearize clusterlin_make_connected clusterlin_merge clusterlin_postlinearize clusterlin_postlinearize_moved_leaf clusterlin_postlinearize_tree clusterlin_search_finder coin_grinder coin_grinder_is_optimal coincontrol coins_deserialize coins_view coinscache_sim coinselection connman crypter crypto crypto_aeadchacha20poly1305 crypto_aes256 crypto_aes256cbc crypto_chacha20 crypto_common crypto_diff_fuzz_chacha20 crypto_fschacha20 crypto_fschacha20poly1305 crypto_hkdf_hmac_sha256_l32 crypto_poly1305 crypto_poly1305_split cuckoocache data_stream_addr_man decode_tx descriptor_parse diskblockindex_deserialize ellswift_roundtrip eval_script fee_rate fee_rate_deserialize feefrac fees flat_file_pos_deserialize flatfile float golomb_rice headers_sync_state hex http_request i2p integer inv_deserialize key key_io key_origin_info_deserialize kitchen_sink load_external_block_file local_address locale merkle_block_deserialize merkleblock message messageheader_deserialize mini_miner mini_miner_selection miniscript_script miniscript_smart miniscript_stable miniscript_string minisketch mocked_descriptor_parse muhash multiplication_overflow net net_permissions netaddr_deserialize netaddress netbase_dns_lookup node_eviction out_point_deserialize p2p_handshake p2p_headers_presync p2p_transport_bidirectional p2p_transport_bidirectional_v1v2 p2p_transport_bidirectional_v2 p2p_transport_serialization package_rbf parse_hd_keypath parse_iso8601 parse_numbers parse_script parse_univalue partial_merkle_tree_deserialize partially_downloaded_block partially_signed_transaction_deserialize policy_estimator policy_estimator_io pool_resource pow pow_transition prefilled_transaction_deserialize prevector primitives_transaction process_message process_messages protocol psbt psbt_input_deserialize psbt_output_deserialize pub_key_deserialize random rbf rolling_bloom_filter rpc script script_descriptor_cache script_deserialize script_flags script_format script_interpreter script_ops script_parsing script_sigcache script_sign scriptnum_ops scriptpubkeyman secp256k1_ec_seckey_import_export_der secp256k1_ecdsa_signature_parse_der_lax service_deserialize signature_checker signet snapshotmetadata_deserialize socks5 span str_printf string system timeoffsets torcontrol transaction tx_in tx_in_deserialize tx_out tx_package_eval tx_pool tx_pool_standard txorphan txoutcompressor_deserialize txrequest txundo_deserialize uint160_deserialize uint256_deserialize utxo_snapshot utxo_snapshot_invalid utxo_total_supply validation_load_mempool vecdeque versionbits wallet_bdb_parser wallet_fees wallet_notifications
2024-09-20T09:37:22.2155790Z addition_overflow: succeeded against 59 files in 0s.
2024-09-20T09:37:22.2402040Z address_deserialize: succeeded against 132 files in 0s.
2024-09-20T09:37:22.2504680Z addr_info_deserialize: succeeded against 109 files in 0s.
2024-09-20T09:37:22.3175530Z asmap: succeeded against 202 files in 0s.
2024-09-20T09:37:22.3778720Z asmap_direct: succeeded against 164 files in 0s.
2024-09-20T09:37:22.4298580Z bech32: succeeded against 86 files in 0s.
2024-09-20T09:37:22.4401230Z autofile: succeeded against 208 files in 0s.
2024-09-20T09:37:22.5012480Z Run address_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/address_deserialize')]
2024-09-20T09:37:22.5082400Z Run bech32 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/bech32')]
2024-09-20T09:37:22.5084340Z Run asmap_direct with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/asmap_direct')]
2024-09-20T09:37:22.5086200Z Run asmap with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/asmap')]
2024-09-20T09:37:22.5088100Z Run addition_overflow with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/addition_overflow')]
2024-09-20T09:37:22.5090010Z Run autofile with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/autofile')]
2024-09-20T09:37:22.5091940Z Run addr_info_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/addr_info_deserialize')]
2024-09-20T09:37:22.5726060Z Run bip324_ecdh with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/bip324_ecdh')]
2024-09-20T09:37:22.5727270Z bip324_ecdh: succeeded against 238 files in 0s.
2024-09-20T09:37:22.6838340Z block_file_info_deserialize: succeeded against 33 files in 0s.
2024-09-20T09:37:22.6940820Z Run block_file_info_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/block_file_info_deserialize')]
2024-09-20T09:37:22.8383590Z block_filter_deserialize: succeeded against 58 files in 0s.
2024-09-20T09:37:22.8493630Z Run block_filter_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/block_filter_deserialize')]
2024-09-20T09:37:22.9261560Z bitset: succeeded against 948 files in 0s.
2024-09-20T09:37:22.9363540Z Run bitset with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/bitset')]
2024-09-20T09:37:22.9863840Z block_header: succeeded against 81 files in 0s.
2024-09-20T09:37:22.9965510Z Run block_header with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/block_header')]
2024-09-20T09:37:23.1811300Z block_deserialize: succeeded against 136 files in 1s.
2024-09-20T09:37:23.1914120Z Run block_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/block_deserialize')]
2024-09-20T09:37:23.5782120Z Run block_header_and_short_txids_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/block_header_and_short_txids_deserialize')]
2024-09-20T09:37:23.5784630Z block_header_and_short_txids_deserialize: succeeded against 152 files in 1s.
2024-09-20T09:37:23.6608560Z Run blockfilter with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/blockfilter')]
2024-09-20T09:37:23.6609630Z blockfilter: succeeded against 256 files in 0s.
2024-09-20T09:37:23.6912020Z Run blockheader_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/blockheader_deserialize')]
2024-09-20T09:37:23.6913240Z blockheader_deserialize: succeeded against 12 files in 0s.
2024-09-20T09:37:23.7926870Z Run blocklocator_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/blocklocator_deserialize')]
2024-09-20T09:37:23.7928190Z blocklocator_deserialize: succeeded against 32 files in 0s.
2024-09-20T09:37:23.9453280Z block_index: succeeded against 286 files in 0s.
2024-09-20T09:37:23.9555820Z Run block_index with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/block_index')]
2024-09-20T09:37:24.0772620Z Run blocktransactionsrequest_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/blocktransactionsrequest_deserialize')]
2024-09-20T09:37:24.0774080Z blocktransactionsrequest_deserialize: succeeded against 42 files in 0s.
2024-09-20T09:37:24.2921390Z base_encode_decode: succeeded against 1076 files in 2s.
2024-09-20T09:37:24.3026350Z Run base_encode_decode with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/base_encode_decode')]
2024-09-20T09:37:24.3564080Z bitdeque: succeeded against 581 files in 2s.
2024-09-20T09:37:24.3667300Z Run bitdeque with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/bitdeque')]
2024-09-20T09:37:24.3668430Z blockmerkleroot: succeeded against 151 files in 1s.
2024-09-20T09:37:24.3770480Z Run blockmerkleroot with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/blockmerkleroot')]
2024-09-20T09:37:24.4989190Z bloomfilter_deserialize: succeeded against 29 files in 0s.
2024-09-20T09:37:24.5099920Z Run bloomfilter_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/bloomfilter_deserialize')]
2024-09-20T09:37:24.5986790Z buffered_file: succeeded against 194 files in 0s.
2024-09-20T09:37:24.6089130Z Run buffered_file with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/buffered_file')]
2024-09-20T09:37:24.6192110Z Run bip324_cipher_roundtrip with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/bip324_cipher_roundtrip')]
2024-09-20T09:37:24.6195320Z bip324_cipher_roundtrip: succeeded against 507 files in 2s.
2024-09-20T09:37:24.6297710Z Run build_and_compare_feerate_diagram with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/build_and_compare_feerate_diagram')]
2024-09-20T09:37:24.6299190Z build_and_compare_feerate_diagram: succeeded against 62 files in 0s.
2024-09-20T09:37:24.7431980Z blocktransactions_deserialize: succeeded against 144 files in 1s.
2024-09-20T09:37:24.7534550Z Run blocktransactions_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/blocktransactions_deserialize')]
2024-09-20T09:37:24.7737820Z Run chain with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/chain')]
2024-09-20T09:37:24.7739160Z chain: succeeded against 83 files in 0s.
2024-09-20T09:37:24.9164600Z checkqueue: succeeded against 59 files in 0s.
2024-09-20T09:37:24.9285840Z Run checkqueue with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/checkqueue')]
2024-09-20T09:37:24.9495590Z clusterlin_add_dependency: succeeded against 96 files in 0s.
2024-09-20T09:37:24.9619690Z Run clusterlin_add_dependency with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_add_dependency')]
2024-09-20T09:37:25.0470460Z Run clusterlin_ancestor_finder with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_ancestor_finder')]
2024-09-20T09:37:25.0471790Z clusterlin_ancestor_finder: succeeded against 57 files in 0s.
2024-09-20T09:37:25.0795900Z Run clusterlin_chunking with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_chunking')]
2024-09-20T09:37:25.0800890Z clusterlin_chunking: succeeded against 47 files in 0s.
2024-09-20T09:37:25.1888600Z clusterlin_cluster_serialization: succeeded against 87 files in 0s.
2024-09-20T09:37:25.1905870Z Run clusterlin_cluster_serialization with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_cluster_serialization')]
2024-09-20T09:37:25.2170180Z clusterlin_components: succeeded against 58 files in 0s.
2024-09-20T09:37:25.2274330Z Run clusterlin_components with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_components')]
2024-09-20T09:37:25.3499530Z Run clusterlin_depgraph_serialization with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_depgraph_serialization')]
2024-09-20T09:37:25.3501290Z clusterlin_depgraph_serialization: succeeded against 94 files in 0s.
2024-09-20T09:37:25.3603570Z Run clusterlin_linearization_chunking with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_linearization_chunking')]
2024-09-20T09:37:25.3604880Z clusterlin_linearization_chunking: succeeded against 80 files in 0s.
2024-09-20T09:37:25.3806590Z blockundo_deserialize: succeeded against 168 files in 1s.
2024-09-20T09:37:25.3908510Z Run blockundo_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/blockundo_deserialize')]
2024-09-20T09:37:25.5158500Z clusterlin_make_connected: succeeded against 90 files in 0s.
2024-09-20T09:37:25.5267100Z Run clusterlin_make_connected with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_make_connected')]
2024-09-20T09:37:25.5470590Z Run clusterlin_linearize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_linearize')]
2024-09-20T09:37:25.5471810Z clusterlin_linearize: succeeded against 167 files in 0s.
2024-09-20T09:37:25.6177380Z bloom_filter: succeeded against 527 files in 1s.
2024-09-20T09:37:25.6279270Z Run bloom_filter with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/bloom_filter')]
2024-09-20T09:37:25.6381100Z clusterlin_postlinearize: succeeded against 59 files in 0s.
2024-09-20T09:37:25.6483020Z Run clusterlin_postlinearize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_postlinearize')]
2024-09-20T09:37:25.6685930Z Run clusterlin_merge with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_merge')]
2024-09-20T09:37:25.6687090Z clusterlin_merge: succeeded against 119 files in 0s.
2024-09-20T09:37:25.7211070Z clusterlin_postlinearize_moved_leaf: succeeded against 59 files in 0s.
2024-09-20T09:37:25.7313250Z Run clusterlin_postlinearize_moved_leaf with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_postlinearize_moved_leaf')]
2024-09-20T09:37:25.7616950Z Run clusterlin_postlinearize_tree with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_postlinearize_tree')]
2024-09-20T09:37:25.7618230Z clusterlin_postlinearize_tree: succeeded against 130 files in 0s.
2024-09-20T09:37:25.8669080Z clusterlin_search_finder: succeeded against 103 files in 0s.
2024-09-20T09:37:25.8970250Z Run clusterlin_search_finder with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/clusterlin_search_finder')]
2024-09-20T09:37:26.1588960Z chacha20_split_crypt: succeeded against 233 files in 2s.
2024-09-20T09:37:26.1755940Z coins_deserialize: succeeded against 62 files in 1s.
2024-09-20T09:37:26.1919480Z Run chacha20_split_crypt with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/chacha20_split_crypt')]
2024-09-20T09:37:26.1920700Z chacha20_split_keystream: succeeded against 254 files in 2s.
2024-09-20T09:37:26.2226750Z Run chacha20_split_keystream with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/chacha20_split_keystream')]
2024-09-20T09:37:26.2232680Z Run coins_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/coins_deserialize')]
2024-09-20T09:37:26.2622990Z Run coincontrol with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/coincontrol')]
2024-09-20T09:37:26.2624070Z coincontrol: succeeded against 191 files in 1s.
2024-09-20T09:37:26.4624630Z Run coin_grinder_is_optimal with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/coin_grinder_is_optimal')]
2024-09-20T09:37:26.4626090Z coin_grinder_is_optimal: succeeded against 149 files in 1s.
2024-09-20T09:37:26.4947870Z coinscache_sim: succeeded against 250 files in 0s.
2024-09-20T09:37:26.5050490Z Run coinscache_sim with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/coinscache_sim')]
2024-09-20T09:37:27.3662980Z connman: succeeded against 1133 files in 1s.
2024-09-20T09:37:27.3764920Z Run connman with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/connman')]
2024-09-20T09:37:27.9909940Z Run crypto_aeadchacha20poly1305 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto_aeadchacha20poly1305')]
2024-09-20T09:37:27.9911200Z crypto_aeadchacha20poly1305: succeeded against 133 files in 0s.
2024-09-20T09:37:28.2857860Z Run crypto_aes256 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto_aes256')]
2024-09-20T09:37:28.2858950Z crypto_aes256: succeeded against 51 files in 1s.
2024-09-20T09:37:28.7109800Z crypto_aes256cbc: succeeded against 89 files in 0s.
2024-09-20T09:37:28.7211910Z Run crypto_aes256cbc with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto_aes256cbc')]
2024-09-20T09:37:28.7819740Z Run coins_view with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/coins_view')]
2024-09-20T09:37:28.7820800Z coins_view: succeeded against 1724 files in 2s.
2024-09-20T09:37:28.8853650Z crypto_common: succeeded against 18 files in 0s.
2024-09-20T09:37:28.8855120Z Run crypto_common with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto_common')]
2024-09-20T09:37:29.2083270Z coin_grinder: succeeded against 385 files in 4s.
2024-09-20T09:37:29.2185630Z Run coin_grinder with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/coin_grinder')]
2024-09-20T09:37:29.4117610Z Run crypto_fschacha20 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto_fschacha20')]
2024-09-20T09:37:29.4120030Z crypto_fschacha20: succeeded against 124 files in 0s.
2024-09-20T09:37:29.5343290Z Run crypto_diff_fuzz_chacha20 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto_diff_fuzz_chacha20')]
2024-09-20T09:37:29.5345000Z crypto_diff_fuzz_chacha20: succeeded against 248 files in 1s.
2024-09-20T09:37:29.7681640Z crypto_chacha20: succeeded against 193 files in 1s.
2024-09-20T09:37:29.7883210Z Run crypto_chacha20 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto_chacha20')]
2024-09-20T09:37:29.8593820Z Run crypter with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypter')]
2024-09-20T09:37:29.8594850Z crypter: succeeded against 287 files in 3s.
2024-09-20T09:37:29.9007150Z crypto_poly1305: succeeded against 29 files in 0s.
2024-09-20T09:37:29.9143150Z Run crypto_poly1305 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto_poly1305')]
2024-09-20T09:37:30.0042460Z crypto_poly1305_split: succeeded against 47 files in 0s.
2024-09-20T09:37:30.0151050Z Run crypto_poly1305_split with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto_poly1305_split')]
2024-09-20T09:37:30.0784840Z Run cuckoocache with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/cuckoocache')]
2024-09-20T09:37:30.0785910Z cuckoocache: succeeded against 115 files in 0s.
2024-09-20T09:37:30.2378360Z Run crypto_hkdf_hmac_sha256_l32 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto_hkdf_hmac_sha256_l32')]
2024-09-20T09:37:30.2379700Z crypto_hkdf_hmac_sha256_l32: succeeded against 129 files in 1s.
2024-09-20T09:37:30.9943080Z Run crypto_fschacha20poly1305 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto_fschacha20poly1305')]
2024-09-20T09:37:30.9944340Z crypto_fschacha20poly1305: succeeded against 137 files in 1s.
2024-09-20T09:37:31.0960010Z Run coinselection with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/coinselection')]
2024-09-20T09:37:31.0961270Z coinselection: succeeded against 389 files in 4s.
2024-09-20T09:37:31.1061740Z Run diskblockindex_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/diskblockindex_deserialize')]
2024-09-20T09:37:31.1063080Z diskblockindex_deserialize: succeeded against 36 files in 0s.
2024-09-20T09:37:31.2546730Z decode_tx: succeeded against 329 files in 1s.
2024-09-20T09:37:31.2658710Z Run decode_tx with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/decode_tx')]
2024-09-20T09:37:31.3913390Z fee_rate: succeeded against 11 files in 0s.
2024-09-20T09:37:31.4034030Z Run fee_rate with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/fee_rate')]
2024-09-20T09:37:31.5279020Z fee_rate_deserialize: succeeded against 10 files in 0s.
2024-09-20T09:37:31.5420540Z Run fee_rate_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/fee_rate_deserialize')]
2024-09-20T09:37:31.5965510Z Run data_stream_addr_man with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/data_stream_addr_man')]
2024-09-20T09:37:31.5966790Z data_stream_addr_man: succeeded against 1059 files in 1s.
2024-09-20T09:37:31.6178520Z Run ellswift_roundtrip with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/ellswift_roundtrip')]
2024-09-20T09:37:31.6182240Z ellswift_roundtrip: succeeded against 323 files in 0s.
2024-09-20T09:37:31.6485040Z Run eval_script with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/eval_script')]
2024-09-20T09:37:31.6486280Z eval_script: succeeded against 989 files in 0s.
2024-09-20T09:37:31.6587950Z Run feefrac with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/feefrac')]
2024-09-20T09:37:31.6589000Z feefrac: succeeded against 27 files in 0s.
2024-09-20T09:37:31.7215970Z Run fees with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/fees')]
2024-09-20T09:37:31.7217080Z fees: succeeded against 59 files in 0s.
2024-09-20T09:37:31.7319010Z Run flat_file_pos_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/flat_file_pos_deserialize')]
2024-09-20T09:37:31.7320350Z flat_file_pos_deserialize: succeeded against 20 files in 0s.
2024-09-20T09:37:31.7621770Z float: succeeded against 18 files in 0s.
2024-09-20T09:37:31.7723530Z Run float with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/float')]
2024-09-20T09:37:31.7724590Z flatfile: succeeded against 28 files in 0s.
2024-09-20T09:37:31.7725770Z Run flatfile with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/flatfile')]
2024-09-20T09:37:31.8855830Z Run http_request with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/http_request')]
2024-09-20T09:37:31.8856930Z http_request: succeeded against 46 files in 0s.
2024-09-20T09:37:31.8958830Z Run golomb_rice with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/golomb_rice')]
2024-09-20T09:37:31.8960210Z golomb_rice: succeeded against 148 files in 0s.
2024-09-20T09:37:32.0614540Z integer: succeeded against 144 files in 0s.
2024-09-20T09:37:32.0717650Z Run integer with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/integer')]
2024-09-20T09:37:32.1544870Z Run i2p with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/i2p')]
2024-09-20T09:37:32.1546160Z i2p: succeeded against 281 files in 1s.
2024-09-20T09:37:32.1793980Z Run inv_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/inv_deserialize')]
2024-09-20T09:37:32.1795190Z inv_deserialize: succeeded against 11 files in 0s.
2024-09-20T09:37:32.3110490Z Run key_io with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/key_io')]
2024-09-20T09:37:32.3111490Z key_io: succeeded against 106 files in 0s.
2024-09-20T09:37:32.4384190Z Run key_origin_info_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/key_origin_info_deserialize')]
2024-09-20T09:37:32.4385550Z key_origin_info_deserialize: succeeded against 30 files in 0s.
2024-09-20T09:37:32.5663090Z kitchen_sink: succeeded against 36 files in 0s.
2024-09-20T09:37:32.5775790Z Run kitchen_sink with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/kitchen_sink')]
2024-09-20T09:37:32.5881770Z headers_sync_state: succeeded against 217 files in 1s.
2024-09-20T09:37:32.5883260Z Run headers_sync_state with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/headers_sync_state')]
2024-09-20T09:37:32.6865880Z Run key with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/key')]
2024-09-20T09:37:32.6866890Z key: succeeded against 460 files in 0s.
2024-09-20T09:37:32.7990760Z locale: succeeded against 30 files in 0s.
2024-09-20T09:37:32.8093460Z Run locale with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/locale')]
2024-09-20T09:37:32.9508140Z Run merkle_block_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/merkle_block_deserialize')]
2024-09-20T09:37:32.9510090Z merkle_block_deserialize: succeeded against 59 files in 0s.
2024-09-20T09:37:32.9912600Z load_external_block_file: succeeded against 376 files in 0s.
2024-09-20T09:37:32.9914140Z Run load_external_block_file with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/load_external_block_file')]
2024-09-20T09:37:33.3098320Z message: succeeded against 605 files in 1s.
2024-09-20T09:37:33.3200430Z Run message with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/message')]
2024-09-20T09:37:33.3646030Z descriptor_parse: succeeded against 1837 files in 3s.
2024-09-20T09:37:33.3748230Z Run descriptor_parse with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/descriptor_parse')]
2024-09-20T09:37:33.4253030Z messageheader_deserialize: succeeded against 49 files in 0s.
2024-09-20T09:37:33.4355900Z Run messageheader_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/messageheader_deserialize')]
2024-09-20T09:37:34.3051780Z Run crypto with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/crypto')]
2024-09-20T09:37:34.3065900Z crypto: succeeded against 312 files in 8s.
2024-09-20T09:37:34.3542030Z Run hex with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/hex')]
2024-09-20T09:37:34.3553380Z hex: succeeded against 234 files in 3s.
2024-09-20T09:37:34.4752720Z mini_miner_selection: succeeded against 490 files in 1s.
2024-09-20T09:37:34.4856900Z Run mini_miner_selection with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/mini_miner_selection')]
2024-09-20T09:37:34.4858170Z block: succeeded against 431 files in 12s.
2024-09-20T09:37:34.4961500Z Run block with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/block')]
2024-09-20T09:37:34.5765060Z merkleblock: succeeded against 268 files in 2s.
2024-09-20T09:37:34.5776140Z Run merkleblock with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/merkleblock')]
2024-09-20T09:37:34.7459990Z minisketch: succeeded against 268 files in 0s.
2024-09-20T09:37:34.7562080Z Run minisketch with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/minisketch')]
2024-09-20T09:37:35.0536560Z local_address: succeeded against 848 files in 2s.
2024-09-20T09:37:35.0638530Z Run local_address with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/local_address')]
2024-09-20T09:37:35.3402900Z miniscript_script: succeeded against 591 files in 1s.
2024-09-20T09:37:35.3505610Z Run miniscript_script with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/miniscript_script')]
2024-09-20T09:37:35.4576710Z multiplication_overflow: succeeded against 62 files in 0s.
2024-09-20T09:37:35.4691130Z Run multiplication_overflow with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/multiplication_overflow')]
2024-09-20T09:37:35.6123150Z Run addrman with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/addrman')]
2024-09-20T09:37:35.6124380Z addrman: succeeded against 1210 files in 13s.
2024-09-20T09:37:35.7538320Z Run net_permissions with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/net_permissions')]
2024-09-20T09:37:35.7539520Z net_permissions: succeeded against 257 files in 0s.
2024-09-20T09:37:35.8752210Z Run netaddr_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/netaddr_deserialize')]
2024-09-20T09:37:35.8753620Z netaddr_deserialize: succeeded against 84 files in 0s.
2024-09-20T09:37:36.0124790Z netaddress: succeeded against 236 files in 0s.
2024-09-20T09:37:36.0235220Z Run netaddress with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/netaddress')]
2024-09-20T09:37:36.0473490Z Run miniscript_smart with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/miniscript_smart')]
2024-09-20T09:37:36.0474700Z miniscript_smart: succeeded against 1091 files in 1s.
2024-09-20T09:37:36.2829550Z netbase_dns_lookup: succeeded against 309 files in 0s.
2024-09-20T09:37:36.2834090Z Run netbase_dns_lookup with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/netbase_dns_lookup')]
2024-09-20T09:37:36.4202250Z miniscript_stable: succeeded against 1406 files in 2s.
2024-09-20T09:37:36.4335660Z Run miniscript_stable with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/miniscript_stable')]
2024-09-20T09:37:36.4336940Z out_point_deserialize: succeeded against 12 files in 0s.
2024-09-20T09:37:36.4356730Z Run out_point_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/out_point_deserialize')]
2024-09-20T09:37:36.4537080Z Run node_eviction with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/node_eviction')]
2024-09-20T09:37:36.4538200Z node_eviction: succeeded against 272 files in 0s.
2024-09-20T09:37:36.5039660Z Run net with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/net')]
2024-09-20T09:37:36.5040740Z net: succeeded against 864 files in 1s.
2024-09-20T09:37:36.6993790Z p2p_handshake: succeeded against 689 files in 0s.
2024-09-20T09:37:36.7095930Z Run p2p_handshake with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/p2p_handshake')]
2024-09-20T09:37:36.8462210Z banman: succeeded against 1061 files in 14s.
2024-09-20T09:37:36.8564370Z Run banman with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/banman')]
2024-09-20T09:37:36.9862340Z miniscript_string: succeeded against 634 files in 2s.
2024-09-20T09:37:36.9964330Z Run miniscript_string with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/miniscript_string')]
2024-09-20T09:37:37.2520710Z Run p2p_transport_serialization with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/p2p_transport_serialization')]
2024-09-20T09:37:37.2522040Z p2p_transport_serialization: succeeded against 286 files in 1s.
2024-09-20T09:37:37.3645820Z Run parse_hd_keypath with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/parse_hd_keypath')]
2024-09-20T09:37:37.3647270Z parse_hd_keypath: succeeded against 52 files in 0s.
2024-09-20T09:37:37.4721160Z parse_iso8601: succeeded against 80 files in 0s.
2024-09-20T09:37:37.4822970Z Run parse_iso8601 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/parse_iso8601')]
2024-09-20T09:37:37.6202300Z Run parse_numbers with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/parse_numbers')]
2024-09-20T09:37:37.6203450Z parse_numbers: succeeded against 108 files in 0s.
2024-09-20T09:37:37.7735310Z Run parse_script with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/parse_script')]
2024-09-20T09:37:37.7736440Z parse_script: succeeded against 167 files in 0s.
2024-09-20T09:37:38.4179310Z Run parse_univalue with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/parse_univalue')]
2024-09-20T09:37:38.4180420Z parse_univalue: succeeded against 1982 files in 1s.
2024-09-20T09:37:38.5384310Z Run partial_merkle_tree_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/partial_merkle_tree_deserialize')]
2024-09-20T09:37:38.5385730Z partial_merkle_tree_deserialize: succeeded against 55 files in 0s.
2024-09-20T09:37:39.4985250Z p2p_transport_bidirectional_v1v2: succeeded against 373 files in 3s.
2024-09-20T09:37:39.5087460Z Run p2p_transport_bidirectional_v1v2 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/p2p_transport_bidirectional_v1v2')]
2024-09-20T09:37:39.7026720Z partially_downloaded_block: succeeded against 486 files in 1s.
2024-09-20T09:37:39.7134870Z Run partially_downloaded_block with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/partially_downloaded_block')]
2024-09-20T09:37:39.7839480Z Run p2p_transport_bidirectional with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/p2p_transport_bidirectional')]
2024-09-20T09:37:39.7840800Z p2p_transport_bidirectional: succeeded against 288 files in 3s.
2024-09-20T09:37:39.9520620Z policy_estimator_io: succeeded against 148 files in 0s.
2024-09-20T09:37:39.9622600Z Run policy_estimator_io with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/policy_estimator_io')]
2024-09-20T09:37:40.0538740Z Run partially_signed_transaction_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/partially_signed_transaction_deserialize')]
2024-09-20T09:37:40.0540440Z partially_signed_transaction_deserialize: succeeded against 1091 files in 0s.
2024-09-20T09:37:41.8305580Z policy_estimator: succeeded against 508 files in 2s.
2024-09-20T09:37:41.8407770Z Run policy_estimator with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/policy_estimator')]
2024-09-20T09:37:41.9600840Z pow_transition: succeeded against 115 files in 0s.
2024-09-20T09:37:41.9703280Z Run pow_transition with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/pow_transition')]
2024-09-20T09:37:42.2101640Z prefilled_transaction_deserialize: succeeded against 117 files in 1s.
2024-09-20T09:37:42.2203120Z Run prefilled_transaction_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/prefilled_transaction_deserialize')]
2024-09-20T09:37:42.3777520Z prevector: succeeded against 161 files in 0s.
2024-09-20T09:37:42.3878710Z Run prevector with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/prevector')]
2024-09-20T09:37:42.4986840Z Run p2p_transport_bidirectional_v2 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/p2p_transport_bidirectional_v2')]
2024-09-20T09:37:42.4988530Z p2p_transport_bidirectional_v2: succeeded against 559 files in 6s.
2024-09-20T09:37:42.5090280Z pow: succeeded against 212 files in 2s.
2024-09-20T09:37:42.5192350Z Run pow with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/pow')]
2024-09-20T09:37:43.3933480Z Run primitives_transaction with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/primitives_transaction')]
2024-09-20T09:37:43.3935210Z primitives_transaction: succeeded against 368 files in 1s.
2024-09-20T09:37:43.5046930Z protocol: succeeded against 23 files in 0s.
2024-09-20T09:37:43.5150190Z Run protocol with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/protocol')]
2024-09-20T09:37:45.0525550Z Run psbt with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/psbt')]
2024-09-20T09:37:45.0526800Z psbt: succeeded against 2997 files in 1s.
2024-09-20T09:37:45.4747460Z process_message: succeeded against 2186 files in 3s.
2024-09-20T09:37:45.4810190Z Run process_message with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/process_message')]
2024-09-20T09:37:45.4811760Z process_messages: succeeded against 2879 files in 3s.
2024-09-20T09:37:45.4910620Z Run process_messages with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/process_messages')]
2024-09-20T09:37:45.6018440Z pub_key_deserialize: succeeded against 38 files in 0s.
2024-09-20T09:37:45.6119270Z Run pub_key_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/pub_key_deserialize')]
2024-09-20T09:37:45.7375180Z psbt_output_deserialize: succeeded against 367 files in 0s.
2024-09-20T09:37:45.7476640Z Run psbt_output_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/psbt_output_deserialize')]
2024-09-20T09:37:45.7478500Z random: succeeded against 125 files in 0s.
2024-09-20T09:37:45.7580740Z Run random with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/random')]
2024-09-20T09:37:45.8348980Z psbt_input_deserialize: succeeded against 666 files in 0s.
2024-09-20T09:37:45.8451220Z Run psbt_input_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/psbt_input_deserialize')]
2024-09-20T09:37:46.2421440Z Run rolling_bloom_filter with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/rolling_bloom_filter')]
2024-09-20T09:37:46.2422680Z rolling_bloom_filter: succeeded against 128 files in 1s.
2024-09-20T09:37:46.7750220Z muhash: succeeded against 430 files in 11s.
2024-09-20T09:37:46.7751920Z Run muhash with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/muhash')]
2024-09-20T09:37:46.8672060Z Run rbf with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/rbf')]
2024-09-20T09:37:46.8673190Z rbf: succeeded against 463 files in 1s.
2024-09-20T09:37:46.9917080Z script_deserialize: succeeded against 25 files in 0s.
2024-09-20T09:37:47.0018290Z Run script_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/script_deserialize')]
2024-09-20T09:37:47.3740560Z script_descriptor_cache: succeeded against 117 files in 1s.
2024-09-20T09:37:47.3853900Z Run script_descriptor_cache with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/script_descriptor_cache')]
2024-09-20T09:37:47.3855500Z script: succeeded against 761 files in 1s.
2024-09-20T09:37:47.3956970Z Run script with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/script')]
2024-09-20T09:37:48.0344780Z script_format: succeeded against 726 files in 0s.
2024-09-20T09:37:48.0446720Z Run script_format with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/script_format')]
2024-09-20T09:37:48.2556840Z Run script_ops with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/script_ops')]
2024-09-20T09:37:48.2558000Z script_ops: succeeded against 182 files in 0s.
2024-09-20T09:37:48.3738110Z script_parsing: succeeded against 34 files in 0s.
2024-09-20T09:37:48.3840820Z Run script_parsing with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/script_parsing')]
2024-09-20T09:37:48.6627160Z pool_resource: succeeded against 462 files in 9s.
2024-09-20T09:37:48.6729180Z Run pool_resource with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/pool_resource')]
2024-09-20T09:37:49.4139910Z script_sigcache: succeeded against 293 files in 1s.
2024-09-20T09:37:49.4242410Z Run script_sigcache with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/script_sigcache')]
2024-09-20T09:37:49.5689810Z Run scriptnum_ops with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/scriptnum_ops')]
2024-09-20T09:37:49.5691070Z scriptnum_ops: succeeded against 81 files in 0s.
2024-09-20T09:37:49.8851200Z Run package_rbf with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/package_rbf')]
2024-09-20T09:37:49.8852830Z package_rbf: succeeded against 484 files in 13s.
2024-09-20T09:37:49.9987820Z Run secp256k1_ec_seckey_import_export_der with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/secp256k1_ec_seckey_import_export_der')]
2024-09-20T09:37:49.9989330Z secp256k1_ec_seckey_import_export_der: succeeded against 21 files in 0s.
2024-09-20T09:37:50.1557150Z secp256k1_ecdsa_signature_parse_der_lax: succeeded against 123 files in 1s.
2024-09-20T09:37:50.1659890Z Run secp256k1_ecdsa_signature_parse_der_lax with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/secp256k1_ecdsa_signature_parse_der_lax')]
2024-09-20T09:37:50.2786310Z Run service_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/service_deserialize')]
2024-09-20T09:37:50.2787550Z service_deserialize: succeeded against 92 files in 0s.
2024-09-20T09:37:50.6177790Z Run signature_checker with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/signature_checker')]
2024-09-20T09:37:50.6179030Z signature_checker: succeeded against 1006 files in 0s.
2024-09-20T09:37:51.4831350Z signet: succeeded against 1027 files in 1s.
2024-09-20T09:37:51.4930810Z Run signet with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/signet')]
2024-09-20T09:37:51.5993070Z snapshotmetadata_deserialize: succeeded against 16 files in 0s.
2024-09-20T09:37:51.6008720Z Run snapshotmetadata_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/snapshotmetadata_deserialize')]
2024-09-20T09:37:51.7148600Z socks5: succeeded against 45 files in 0s.
2024-09-20T09:37:51.7251820Z Run socks5 with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/socks5')]
2024-09-20T09:37:51.8263170Z Run span with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/span')]
2024-09-20T09:37:51.8264260Z span: succeeded against 4 files in 0s.
2024-09-20T09:37:52.1414430Z str_printf: succeeded against 579 files in 1s.
2024-09-20T09:37:52.1517380Z Run str_printf with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/str_printf')]
2024-09-20T09:37:52.3191250Z string: succeeded against 625 files in 0s.
2024-09-20T09:37:52.3293050Z Run string with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/string')]
2024-09-20T09:37:52.5411530Z system: succeeded against 371 files in 0s.
2024-09-20T09:37:52.5539250Z Run system with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/system')]
2024-09-20T09:37:53.0166280Z Run script_flags with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/script_flags')]
2024-09-20T09:37:53.0167470Z script_flags: succeeded against 1637 files in 6s.
2024-09-20T09:37:53.1329860Z Run timeoffsets with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/timeoffsets')]
2024-09-20T09:37:53.1331040Z timeoffsets: succeeded against 139 files in 1s.
2024-09-20T09:37:53.7059490Z Run torcontrol with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/torcontrol')]
2024-09-20T09:37:53.7067500Z torcontrol: succeeded against 245 files in 0s.
2024-09-20T09:37:53.8269260Z Run tx_in with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/tx_in')]
2024-09-20T09:37:53.8270250Z tx_in: succeeded against 65 files in 0s.
2024-09-20T09:37:53.8978560Z rpc: succeeded against 6211 files in 8s.
2024-09-20T09:37:53.9080570Z Run rpc with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/rpc')]
2024-09-20T09:37:53.9382410Z tx_in_deserialize: succeeded against 43 files in 0s.
2024-09-20T09:37:53.9405500Z Run tx_in_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/tx_in_deserialize')]
2024-09-20T09:37:54.0238720Z tx_out: succeeded against 37 files in 0s.
2024-09-20T09:37:54.0340210Z Run tx_out with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/tx_out')]
2024-09-20T09:37:54.2639580Z Run script_interpreter with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/script_interpreter')]
2024-09-20T09:37:54.2641000Z script_interpreter: succeeded against 378 files in 7s.
2024-09-20T09:37:56.6210670Z scriptpubkeyman: succeeded against 3286 files in 7s.
2024-09-20T09:37:56.6313480Z Run scriptpubkeyman with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/scriptpubkeyman')]
2024-09-20T09:37:57.3745800Z txorphan: succeeded against 266 files in 1s.
2024-09-20T09:37:57.3846620Z Run txorphan with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/txorphan')]
2024-09-20T09:37:57.4964370Z Run txoutcompressor_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/txoutcompressor_deserialize')]
2024-09-20T09:37:57.4966800Z txoutcompressor_deserialize: succeeded against 64 files in 0s.
2024-09-20T09:37:59.4381590Z tx_pool: succeeded against 2671 files in 5s.
2024-09-20T09:37:59.4483610Z Run tx_pool with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/tx_pool')]
2024-09-20T09:37:59.7858790Z Run txrequest with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/txrequest')]
2024-09-20T09:37:59.7859950Z txrequest: succeeded against 214 files in 2s.
2024-09-20T09:37:59.7961170Z txundo_deserialize: succeeded against 146 files in 0s.
2024-09-20T09:37:59.8063350Z Run txundo_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/txundo_deserialize')]
2024-09-20T09:37:59.8960460Z Run uint160_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/uint160_deserialize')]
2024-09-20T09:37:59.8961620Z uint160_deserialize: succeeded against 10 files in 0s.
2024-09-20T09:37:59.9062490Z uint256_deserialize: succeeded against 9 files in 0s.
2024-09-20T09:37:59.9164250Z Run uint256_deserialize with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/uint256_deserialize')]
2024-09-20T09:38:00.2858440Z Run utxo_snapshot_invalid with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/utxo_snapshot_invalid')]
2024-09-20T09:38:00.2859650Z utxo_snapshot_invalid: succeeded against 103 files in 1s.
2024-09-20T09:38:02.3276810Z utxo_snapshot: succeeded against 347 files in 3s.
2024-09-20T09:38:02.3583950Z Run utxo_snapshot with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/utxo_snapshot')]
2024-09-20T09:38:02.8227010Z Run validation_load_mempool with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/validation_load_mempool')]
2024-09-20T09:38:02.8228220Z validation_load_mempool: succeeded against 913 files in 0s.
2024-09-20T09:38:04.1123410Z vecdeque: succeeded against 253 files in 1s.
2024-09-20T09:38:04.1225750Z Run vecdeque with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/vecdeque')]
2024-09-20T09:38:04.2463370Z versionbits: succeeded against 145 files in 0s.
2024-09-20T09:38:04.2464930Z Run versionbits with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/versionbits')]
2024-09-20T09:38:04.3957020Z Run wallet_bdb_parser with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/wallet_bdb_parser')]
2024-09-20T09:38:04.3958310Z wallet_bdb_parser: succeeded against 44 files in 0s.
2024-09-20T09:38:04.5419020Z wallet_fees: succeeded against 21 files in 0s.
2024-09-20T09:38:04.5520470Z Run wallet_fees with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/wallet_fees')]
2024-09-20T09:38:08.4748340Z script_sign: succeeded against 2870 files in 20s.
2024-09-20T09:38:08.4850540Z Run script_sign with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/script_sign')]
2024-09-20T09:38:08.6879570Z transaction: succeeded against 796 files in 15s.
2024-09-20T09:38:08.6981020Z Run transaction with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/transaction')]
2024-09-20T09:38:16.2718470Z Run tx_package_eval with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/tx_package_eval')]
2024-09-20T09:38:16.2719610Z tx_package_eval: succeeded against 808 files in 22s.
2024-09-20T09:38:20.2188550Z mini_miner: succeeded against 525 files in 47s.
2024-09-20T09:38:20.2289590Z Run mini_miner with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/mini_miner')]
2024-09-20T09:38:21.3368490Z Run mocked_descriptor_parse with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/mocked_descriptor_parse')]
2024-09-20T09:38:21.3369710Z mocked_descriptor_parse: succeeded against 1800 files in 47s.
2024-09-20T09:38:25.9006220Z Run tx_pool_standard with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/tx_pool_standard')]
2024-09-20T09:38:25.9007370Z tx_pool_standard: succeeded against 886 files in 31s.
2024-09-20T09:38:44.1884030Z addrman_serdeser: succeeded against 922 files in 82s.
2024-09-20T09:38:44.1903690Z Run addrman_serdeser with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/addrman_serdeser')]
2024-09-20T09:39:16.1469990Z utxo_total_supply: succeeded against 835 files in 76s.
2024-09-20T09:39:16.1473730Z Run utxo_total_supply with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/utxo_total_supply')]
2024-09-20T09:40:42.5074660Z wallet_notifications: succeeded against 980 files in 158s.
2024-09-20T09:40:42.5105050Z Run wallet_notifications with args ['/Users/runner/work/bitcoin/bitcoin/ci/scratch/build-aarch64-apple-darwin23.6.0/src/test/fuzz/fuzz', PosixPath('/Users/runner/work/bitcoin/bitcoin/ci/scratch/qa-assets/fuzz_corpora/wallet_notifications')]
2024-09-20T11:14:08.4748420Z ##[error]The operation was canceled.

@maflcko
Copy link
Member Author

maflcko commented Sep 20, 2024

Sorry, wrong alarm. The timeout may be real. It may be p2p_headers_presync from #30661 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants