mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-23 15:22:46 +02:00
test: Fix Windows cross build
This commit is contained in:
parent
b401b09355
commit
723eb4326b
@ -9,7 +9,6 @@
|
||||
|
||||
#include <cassert>
|
||||
#include <cstdint>
|
||||
#include <netinet/in.h>
|
||||
#include <vector>
|
||||
|
||||
FUZZ_TARGET(netaddress)
|
||||
|
@ -78,7 +78,9 @@ FUZZ_TARGET(string)
|
||||
}
|
||||
(void)SanitizeString(random_string_1);
|
||||
(void)SanitizeString(random_string_1, fuzzed_data_provider.ConsumeIntegralInRange<int>(0, 3));
|
||||
#ifndef WIN32
|
||||
(void)ShellEscape(random_string_1);
|
||||
#endif // WIN32
|
||||
int port_out;
|
||||
std::string host_out;
|
||||
SplitHostPort(random_string_1, port_out, host_out);
|
||||
|
Loading…
x
Reference in New Issue
Block a user