Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(343)

Unified Diff: third_party/yasm/patched-yasm/modules/objfmts/bin/tests/multisect/bin_multi_test.sh

Issue 6170009: Update our yasm copy to yasm 1.1.0 (Part 1: yasm side)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/yasm/patched-yasm/modules/objfmts/bin/tests/multisect/bin_multi_test.sh
===================================================================
--- third_party/yasm/patched-yasm/modules/objfmts/bin/tests/multisect/bin_multi_test.sh (revision 71129)
+++ third_party/yasm/patched-yasm/modules/objfmts/bin/tests/multisect/bin_multi_test.sh (working copy)
@@ -1,5 +1,5 @@
#! /bin/sh
-# $Id: bin_multi_test.sh 2010 2007-11-14 08:33:32Z peter $
+# $Id: bin_multi_test.sh 2226 2009-07-30 02:19:38Z peter $
YASM_TEST_SUITE=1
export YASM_TEST_SUITE
@@ -31,7 +31,7 @@
eg=`echo ${asm} | sed 's,.asm$,.errwarn,'`
m=${a}.map
mg=`echo ${asm} | sed 's,.asm$,.map,'`
- if test \! -e ${eg}; then
+ if test \! -f ${eg}; then
eg=/dev/null
fi
@@ -72,7 +72,7 @@
failedct=`expr $failedct + 1`
else
./test_hd results/${o} > results/${oh}
- if diff ${og} results/${oh} >/dev/null; then
+ if diff -w ${og} results/${oh} >/dev/null; then
if diff -w ${eg} results/${e} >/dev/null; then
if diff -w ${mg} results/${m} >/dev/null; then
# All match, it passes!

Powered by Google App Engine
This is Rietveld 408576698