Date: Mon, 02 Jul 2012 15:26:12 +0000 From: jhagewood@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r238812 - soc2012/jhagewood/sdiff Message-ID: <20120702152612.A6C1E1065670@hub.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhagewood Date: Mon Jul 2 15:26:12 2012 New Revision: 238812 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=238812 Log: Modified: soc2012/jhagewood/sdiff/TODO soc2012/jhagewood/sdiff/sdiff-test.sh Modified: soc2012/jhagewood/sdiff/TODO ============================================================================== --- soc2012/jhagewood/sdiff/TODO Mon Jul 2 15:23:00 2012 (r238811) +++ soc2012/jhagewood/sdiff/TODO Mon Jul 2 15:26:12 2012 (r238812) @@ -1,2 +1,2 @@ Combine diff-spec args and pipe to diff INCOMPLETE -Test script IN PROGRESS +Test script COMPLETE Modified: soc2012/jhagewood/sdiff/sdiff-test.sh ============================================================================== --- soc2012/jhagewood/sdiff/sdiff-test.sh Mon Jul 2 15:23:00 2012 (r238811) +++ soc2012/jhagewood/sdiff/sdiff-test.sh Mon Jul 2 15:26:12 2012 (r238812) @@ -56,6 +56,25 @@ # --tabsize $1 --tabsize="6" 1.txt 2.txt >> $2/tabsize.txt + + # --minimal + $1 -d 1.txt 2.txt >> $2/minimal.txt + $1 --minimal 1.txt 2.txt >> $2/minimal.txt + + # --speed-large-files + $1 -H 1.txt 2.txt >> $2/speedlrgfiles.txt + $1 --speed-large-files 1.txt 2.txt >> $2/speedlrgfiles.txt + + # --diff-program + $1 --diff-program="usr/bin/diff" 1.txt 2.txt >> $2/diffprog.txt + + # --output + $1 -o $2/output.txt 1.txt 2.txt + $1 --output=$2/output.txt 1.txt 2.txt + + # --ignore-matching-lines + $1 -I "test" 1.txt 2.txt >> $2/ignrmatchinglines.txt + $1 --ignore-matching-lines="test" 1.txt 2.txt >> $2/ignrmatchinglines.txt } DIR_PATH="./test_outputs/gnu"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20120702152612.A6C1E1065670>