summaryrefslogtreecommitdiffstats
path: root/lrm/test/testcases/ra-list.sh
blob: 38fb67b3233f33ae702760e8a3b9033b55739147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

awk '
NR==1 {num=$3;next}
{in_num++}
END{
	if( num!=in_num )
		print "ERROR: A mismatch in number of reported RAs!";
	else
		print "Cool. RA list passed.";
}
'