]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix testsh2 for OD on arm.
authorLionel Sambuc <lionel@minix3.org>
Wed, 6 Nov 2013 15:25:23 +0000 (16:25 +0100)
committerLionel Sambuc <lionel@minix3.org>
Sat, 1 Mar 2014 08:05:01 +0000 (09:05 +0100)
Change-Id: I4bbed3b6dcb62e85e75887b9522734abae7307e4

test/testsh2.sh

index d75a11ef930fbb911de510297fde13ec03d3e953..3dcda508aa97e8d84b19e817203729a5a95399cd 100755 (executable)
@@ -113,7 +113,7 @@ if test -r x; then : ; else bomb "Error in du Test 1"; fi
 
 #Test od                       
 head -1 $f |od >x              # see if od converts ascii to octal ok
-if [ $ARCH = i86 -o $ARCH = i386 ]
+if [ $ARCH = i86 -o $ARCH = i386 -o $ARCH = arm ]
 then
 cat >answer <<END
 0000000   064124  020145  064564  062555  064040  071541  061440  066557
@@ -135,7 +135,7 @@ fi
 if cmp -s x answer; then : ; else bomb "Error in od test 1"; fi
 
 head -1 $f |od -d >x           # see if od converts ascii to decimal ok
-if [ $ARCH = i86 -o $ARCH = i386 ]
+if [ $ARCH = i86 -o $ARCH = i386 -o $ARCH = arm ]
 then
 cat >answer <<END
 0000000    26708   08293   26996   25965   26656   29537   25376   28015