log_merge: Fix input filename pattern

Change-Id: Iece1063403673a65007f41b6955e384a67acd45f
This commit is contained in:
Harald Welte 2018-03-18 15:13:09 +01:00
parent d45cef33b2
commit e1f9b74602
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ LOG_FILES="$BASE_NAME*.log"
TEST_CASES=`ls -1 $LOG_FILES | awk 'BEGIN { FS = "-" } { print $2 }' | sort | uniq`
for t in $TEST_CASES; do
PREFIX="$BASE_NAME.$t"
OUTPUT="$PREFIX.merged"
PREFIX="$BASE_NAME-$t"
OUTPUT="$BASE_NAME.$t.merged"
ttcn3_logmerge $PREFIX-*.log > $OUTPUT
echo "Generated $OUTPUT"
done