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

Unified Diff: third_party/yasm/patched-yasm/out_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/out_test.sh
===================================================================
--- third_party/yasm/patched-yasm/out_test.sh (revision 71129)
+++ third_party/yasm/patched-yasm/out_test.sh (working copy)
@@ -1,5 +1,5 @@
#! /bin/sh
-# $Id: out_test.sh 1825 2007-04-22 03:32:46Z peter $
+# $Id: out_test.sh 2226 2009-07-30 02:19:38Z peter $
YASM_TEST_SUITE=1
export YASM_TEST_SUITE
@@ -29,7 +29,7 @@
og=`echo ${asm} | sed 's,.asm$,.hex,'`
e=${a}.ew
eg=`echo ${asm} | sed 's,.asm$,.errwarn,'`
- if test \! -e ${eg}; then
+ if test \! -f ${eg}; then
eg=/dev/null
fi
@@ -70,7 +70,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
# Both object file and error/warnings match, it passes!
echo $ECHO_N ".$ECHO_C"
« no previous file with comments | « third_party/yasm/patched-yasm/modules/preprocs/nasm/tests/Makefile.inc ('k') | third_party/yasm/patched-yasm/po/ChangeLog » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698