KVM-Nyx-fork/tools/testing/selftests/net/test_blackhole_dev.sh
David Venhoff cfcea9ee67 Initial commit
Based off b80915eb99
and compacted into a single commit so that it will fit on the uni git server
2025-08-11 13:05:09 +02:00

12 lines
280 B
Bash
Executable File

#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Runs blackhole-dev test using blackhole-dev kernel module
if /sbin/modprobe -q test_blackhole_dev ; then
/sbin/modprobe -q -r test_blackhole_dev;
echo "test_blackhole_dev: ok";
else
echo "test_blackhole_dev: [FAIL]";
exit 1;
fi