repo.or.cz
/
ht-drivers.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vmod/vmodttl: fixed bug related to luns not ordered and/or not starting from zero.
[ht-drivers.git]
/
utils
/
install
/
test
/
test.sh
blob
0ccc3169c185e37570f0ea0f56bb757b09b5df32
1
#!/bin/bash
2
3
# bail out whenever a command doesn't exit cleanly
4
set -e
5
6
VMEDESC
=
..
/
vmedesc
7
8
# each .out file has the command to build it in its first line as a comment
9
for
file
in
*
.out
10
do
11
$VMEDESC
`sed 1q
$file
| sed 's/^# //'`
| \
12
diff
-I
'^#'
--ignore-all-space --ignore-blank-lines
$file
-
13
done
14
15
echo
"test OK"