1#!/bin/bash 2# SPDX-License-Identifier: GPL-2.0 3 4dmesg -C 5 6./debugfs_target_ids_read_before_terminate_race 5000 7 8if dmesg | grep -q dbgfs_target_ids_read 9then 10 dmesg 11 exit 1 12else 13 exit 0 14fi 15