#!/bin/sh
#
# Copyright 2005 Perforce Software. All rights reserved.
#
sed -e 's=..../../.. ..:..:..=yyyy/mm/dd hh:mm:ss=g' ../../depot.*/test.msg | sed -e 's/[MTWFS].., .. [A-Z].. 20.. ..:..:.. -[0-9].../DDD, dd mmm yyyy hh:mm:ss/g' > msgs.$$
diff $1.msgs msgs.$$
if [ $? -ne 0 ]; then
mv msgs.$$ $1.msgs.new
echo "$1 FAILED to match expected msgs"
else
echo "$1 passed with expected msgs"
/bin/rm msgs.$$
fi
# |
Change |
User |
Description |
Committed |
|
#1
|
8493 |
Alan H Teague |
Initial import of the Enhanced Jobs Project |
|
|