Skip to content
Snippets Groups Projects

Changing daqd and streamer ctest tests to only require a readable /dev/gpstime /dev/mbuf.

6 files
+ 12
12
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -42,12 +42,12 @@ if [ ! -x "$FE_STREAM_CHECK_NDS" ]; then
exit 1
fi
if [ ! -w /dev/gpstime ]; then
if [ ! -r /dev/gpstime ]; then
echo "the gpstime module must be loaded, configured, and accessible by this user"
exit 1
fi
if [ ! -w /dev/mbuf ]; then
if [ ! -r /dev/mbuf ]; then
echo "the mbuf module must be loaded, configured, and accessible by this user"
exit 1
fi
Loading