view fuzz/fuzzer-preauth.c @ 1845:b916f2661adb

fix github actions arguments If only we could test this locally with the same setup....
author Matt Johnston <matt@ucc.asn.au>
date Mon, 18 Oct 2021 23:33:41 +0800
parents 97ad26e397a5
children
line wrap: on
line source

#include "fuzz.h"

int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
	return fuzz_run_server(Data, Size, 0, 0);
}