#!/bin/sh

# Checking to see if the output of the test scripts is the same as that for the
# reference log files is obscured by the differences in dates and file paths.
# This script filters out date strings and file paths to provide a log file
# which should be identical with the reference log.

# Example
#   % tFiltAudio | filter_log > new.log
#   % diff new.log tFiltAudio.log

sed 's|file: .*/test/|file: --path--/test/|;
	s|  ..[^78]./../.. ..:..:.. UTC$|  --date--|'

# $Id: filter_log,v 1.1 1994/02/24 AFsp-V1R2 $
