Linux Audio
Check our new training course
1#!/bin/sh 2# Runs printf infrastructure using test_printf kernel module 3 4if /sbin/modprobe -q test_printf; then 5 /sbin/modprobe -q -r test_printf 6 echo "printf: ok" 7else 8 echo "printf: [FAIL]" 9 exit 1 10fi
1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0 3# Tests the printf infrastructure using test_printf kernel module. 4$(dirname $0)/../kselftest/module.sh "printf" test_printf