Add declaration of free() to config/ho-generic.h
[deliverable/binutils-gdb.git] / gas / testscripts / dotest
CommitLineData
fecd2382
RP
1#!/bin/sh
2# ad hoc debug tool
3# $Id$
4
5x=$1
6y=$2
7
8xout=`basename $x`.xxx.$$
9yout=`basename $x`.yyy.$$
10
11mkdir $xout
12mkdir $yout
13
14for i in *.s
15do
16 echo Testing $i...
17 object=`basename $i .s`.o
18 $x $i -o $xout/$object
19 $y $i -o $yout/$object
20
21# if they cmp, we're ok. Otherwise we have to look closer.
22
23 if (cmp $xout/$object $yout/$object)
24 then
25 echo $i is ok.
26 else
27 if (doobjcmp $xout/$object $yout/$object)
28 then
29 echo Not the same but objcmp ok.
30 else
31 exit 1
32 fi
33 fi
34
35 echo
36done
37
38rm -rf $xout $yout
39
40exit 0
41
42# EOF
43
44
This page took 0.038575 seconds and 4 git commands to generate.