Some checks failed
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Successful in 1m34s
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Successful in 2m46s
sm-rpc / build (Debug, host.gcc) (push) Failing after 1m28s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Successful in 2m14s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Successful in 2m8s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Successful in 5m35s
sm-rpc / build (Release, host.gcc) (push) Failing after 1m55s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Successful in 7m21s
38 lines
1.0 KiB
C
38 lines
1.0 KiB
C
#include <assert.h>
|
|
#include <stdio.h>
|
|
|
|
#include "zbuild.h"
|
|
|
|
extern int LLVMFuzzerTestOneInput(const unsigned char *data, size_t size);
|
|
|
|
int main(int argc, char **argv) {
|
|
int i;
|
|
fprintf(stderr, "StandaloneFuzzTargetMain: running %d inputs\n", argc - 1);
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
size_t len, n_read, err;
|
|
unsigned char *buf;
|
|
FILE *f = fopen(argv[i], "rb+");
|
|
if (!f) {
|
|
/* Failed to open this file: it may be a directory. */
|
|
fprintf(stderr, "Skipping: %s\n", argv[i]);
|
|
continue;
|
|
}
|
|
fprintf(stderr, "Running: %s %s\n", argv[0], argv[i]);
|
|
fseek(f, 0, SEEK_END);
|
|
len = ftell(f);
|
|
fseek(f, 0, SEEK_SET);
|
|
buf = (unsigned char *)malloc(len);
|
|
n_read = fread(buf, 1, len, f);
|
|
assert(n_read == len);
|
|
LLVMFuzzerTestOneInput(buf, len);
|
|
free(buf);
|
|
err = fclose(f);
|
|
assert(err == 0);
|
|
Z_UNUSED(err);
|
|
fprintf(stderr, "Done: %s: (%d bytes)\n", argv[i], (int)n_read);
|
|
}
|
|
|
|
return 0;
|
|
}
|