X Tutup
Skip to content

Commit 21db5ac

Browse files
committed
updated test_validate_avro.sh
1 parent ebdffba commit 21db5ac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/test_validate_avro.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ cd "$srcdir/..";
2323

2424
section "Testing validate_avro.py"
2525

26-
until [ $# -lt 1 ]; do
27-
case $1 in
28-
-*) shift
29-
esac
30-
done
26+
if [ $# -gt 0 ]; then
27+
echo "validate_avro.py $@"
28+
./validate_avro.py $@
29+
echo
30+
fi
3131

3232
data_dir="tests/data"
3333
broken_dir="tests/avro_broken"

0 commit comments

Comments
 (0)
X Tutup