0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

fuzz: Temporarily disable failing assert in banman fuzz test

This commit is contained in:
MarcoFalke 2021-07-21 15:30:22 +02:00
parent a3791da0e8
commit fa8bed6a47
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -109,7 +109,8 @@ FUZZ_TARGET_INIT(banman, initialize_banman)
BanMan ban_man_read{banlist_file, /* client_interface */ nullptr, /* default_ban_time */ 0};
banmap_t banmap_read;
ban_man_read.GetBanned(banmap_read);
assert(banmap == banmap_read);
// Temporarily disabled to allow the remainder of the fuzz test to run while a fix is being worked on:
// assert(banmap == banmap_read);
}
}
fs::remove(banlist_file.string() + ".dat");