Skip to content
Snippets Groups Projects
Commit 0fc2e61a authored by Jonathan Hanks's avatar Jonathan Hanks
Browse files

Merge branch 'update-ctests-for-new-module' into 'master'

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

See merge request cds/advligorts!75
parents d02dca87 2fbfda7c
No related branches found
No related tags found
1 merge request!75Changing daqd and streamer ctest tests to only require a readable /dev/gpstime /dev/mbuf.
......@@ -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
......
......@@ -50,12 +50,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
......
......@@ -42,12 +42,12 @@ if [ ! -x "$NDS1_CONNECTIONS_CHECK" ]; 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
......
......@@ -58,12 +58,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
......
......@@ -41,12 +41,12 @@ if [ ! -x "$FE_MULTI_STREAM_TEST" ]; 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
......
......@@ -57,12 +57,12 @@ if [ ! -x "$FE_MULTI_STREAM_TEST" ]; 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment