blob: 334892bb757e46c4120582b217bf99d496bf3e24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env bash
test_dir=`dirname $0`
for fn in ${test_dir}/datafile_simple.*; do
echo "Checking $fn"
./drive_data_scanner -p $fn
done
for fn in ${test_dir}/log-samples/sample-*; do
echo "Checking $fn"
./drive_data_scanner -p -l $fn
done
|