brintos

brintos / linux-shallow public Read only

0
0
Text · 272 B · 922cada Raw
23 lines · bash
1#!/bin/bash2# SPDX-License-Identifier: GPL-2.03 4source _debugfs_common.sh5 6# Test huge count read write7# ==========================8 9dmesg -C10 11for file in "$DBGFS/"*12do13	./huge_count_read_write "$file"14done15 16if dmesg | grep -q WARNING17then18	dmesg19	exit 120else21	exit 022fi23