blob: bf5b045d81d2a9bae9c0557ed4df598d878914c3 [file] [log] [blame]
Shih-wei Liaoea285162010-06-04 12:34:56 -07001#!/bin/sh
2
3N_STRUCTS=300
4
5# Utility routine to "hand" check type infos.
6
7let i=1;
8while [ $i != $N_STRUCTS ]; do
9 sed -n "/^__ZTI.*s$i:/,/\.[sg][el]/p" test-clang.s |
10 grep -v '\.[sg][el]' | sed 's/(\([0-9][0-9]*\))/\1/' >test-clang-zti
11 sed -n "/^__ZTI.*s$i:/,/\.[sg][el]/p" test-gcc.s |
12 grep -v '\.[sg][el]' | sed 's/(\([0-9][0-9]*\))/\1/' >test-gcc-zti
13 diff -U3 test-gcc-zti test-clang-zti
14 if [ $? != 0 ]; then
15 echo "FAIL: s$i type info"
16 else
17 echo "PASS: s$i type info"
18 fi
19 let i=i+1
20done