From 044f8988d6f4ba4b956fae6799e2c81a86bf24c2 Mon Sep 17 00:00:00 2001 From: pabs3 Date: Tue, 24 Mar 2009 09:41:35 +0000 Subject: [PATCH] Fix arguments to diff in the roundTrip testing tool git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@567 4cde692c-a291-49d1-8350-778aa11640f8 --- MetaTools/roundTrip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MetaTools/roundTrip.py b/MetaTools/roundTrip.py index 1e2c38252..9438f0b7a 100755 --- a/MetaTools/roundTrip.py +++ b/MetaTools/roundTrip.py @@ -43,7 +43,7 @@ def roundTrip(ttFile1, options, report): options.mergeFile = None ttx.ttDump(ttFile2, xmlFile2, options) - diffcmd = 'diff -c2 -I ".*modified value\|checkSumAdjustment.*" "%s" "%s"' % (xmlFile1, xmlFile2) + diffcmd = 'diff -U2 -I ".*modified value\|checkSumAdjustment.*" "%s" "%s"' % (xmlFile1, xmlFile2) output = os.popen(diffcmd, "r", 1) lines = [] while 1: