2019-10-17 04:18:35 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
######################################################################
|
|
|
|
|
# DESCRIPTION: Fuzzer one-line setup & run
|
|
|
|
|
#
|
2026-01-27 02:24:34 +01:00
|
|
|
# SPDX-FileCopyrightText: 2019 Eric Rippey
|
2020-03-21 16:24:24 +01:00
|
|
|
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
2019-10-17 04:18:35 +02:00
|
|
|
######################################################################
|
|
|
|
|
|
|
|
|
|
# Run all steps needed to configure and start fuzzer
|
2023-01-09 00:17:24 +01:00
|
|
|
# Note that this assumes the system is a Debian-like Linux distribution
|
2019-10-17 04:18:35 +02:00
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
sudo ./setup_root
|
|
|
|
|
./setup_user
|
|
|
|
|
./run
|