#!/bin/sh

. ./test-functions

echo -n "dmesg root test:			"
dmesg > /dev/null
if [ $? == 0 ]; then
	passmsg root dmesg allowed
else
	failmsg root dmesg forbidden
fi
