mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-10 21:53:57 +08:00
21c0968bf1
Signed-off-by: Adam Korczynski <adam@adalogics.com>
13 lines
659 B
Bash
Executable File
13 lines
659 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This file is only meant to be run by OSS-fuzz and will not work
|
|
# if run outside of it.
|
|
# The api, compile_go_fuzzer() is provided by the OSS-fuzz
|
|
# environment and is a high level helper function for a series
|
|
# of compilation and linking steps to build the fuzzers in the
|
|
# OSS-fuzz environment.
|
|
# More info about compile_go_fuzzer() can be found here:
|
|
# https://google.github.io/oss-fuzz/getting-started/new-project-guide/go-lang/#buildsh
|
|
compile_go_fuzzer github.com/opencontainers/runc/libcontainer/user FuzzUser user_fuzzer
|
|
compile_go_fuzzer github.com/opencontainers/runc/libcontainer/configs FuzzUnmarshalJSON configs_fuzzer
|