Skip to content

Commit bf34622

Browse files
committed
update pinned wasmfuzz commit
1 parent 00bd5ec commit bf34622

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

eval/container-runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def time_as_seconds(v: str):
109109
parser.add_argument('--tag', action='append', help="Only run targets with this tag")
110110
parser.add_argument('--skip-tag', action='append', help="Don't run targets with this tag")
111111
parser.add_argument('--fuzzer', action='append', help="Run with this fuzzer")
112-
parser.add_argument('--keep-corpora', default=None, help="Copy resulting corpora to this path")
112+
parser.add_argument('--keep-corpora', action='store_true', help="Copy resulting corpora to this path")
113113

114114
args = parser.parse_args()
115115
fuzzers: list[str] = args.fuzzer or [

wasm-fuzzers/Dockerfile.wasmfuzz

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM ubuntu:24.04 AS builder
22
RUN apt-get update && apt-get install -y rustup git clang
33
RUN rustup toolchain add 1.90 --no-self-update
4-
ARG COMMIT="59af6a12ed6c82cff7b3a71db763f3ae4dc08094"
4+
ARG COMMIT="e4b5b364dd628ecfbe0b7849dbd4b97e3ec40a60"
55
RUN git clone https://github.com/CISPA-SysSec/wasmfuzz && git -C wasmfuzz checkout "$COMMIT"
66
RUN cargo install --locked --no-default-features --path /wasmfuzz
77

0 commit comments

Comments
 (0)