mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
c670a86d04
Defect Number: Reviewed By: Testing Done:
17 lines
433 B
Bash
17 lines
433 B
Bash
#! /bin/bash
|
|
|
|
for fn in ${top_srcdir}/test/datafile_simple.*; do
|
|
run_test ./drive_data_scanner $fn
|
|
on_error_fail_with "$fn does not match"
|
|
done
|
|
|
|
for fn in ${top_srcdir}/test/datafile_xml.*; do
|
|
run_test ./drive_data_scanner -P $fn
|
|
on_error_fail_with "$fn does not match"
|
|
done
|
|
|
|
for fn in ${top_srcdir}/test/log-samples/*.txt; do
|
|
run_test ./drive_data_scanner -l $fn
|
|
on_error_fail_with "$fn does not match"
|
|
done
|