brintos

brintos / linux-shallow public Read only

0
0
Text · 389 B · bc95144 Raw
14 lines · plain
1#!/bin/sh2# SPDX-License-Identifier: GPL-2.03# description: Test failure of registering kprobe on non unique symbol4# requires: kprobe_events5 6SYMBOL='name_show'7 8# We skip this test on kernel where SYMBOL is unique or does not exist.9if [ "$(grep -c -E "[[:alnum:]]+ t ${SYMBOL}" /proc/kallsyms)" -le '1' ]; then10	exit_unsupported11fi12 13! echo "p:test_non_unique ${SYMBOL}" > kprobe_events14