blob: d95cc5bf06e15e8e8f4f796baddb11ce25a589dc [file] [log] [blame]
Mike Stump3539f112010-01-07 22:21:26 +00001#!/bin/sh
2
3N_STRUCTS=300
4
5# Utility routine to "hand" check vtables.
6
7let i=0;
8while [ $i != $N_STRUCTS ]; do
9 sed -n "/^__ZTV.*s$i:/,/\.[sg][el]/p" test-clang.s | grep -v '\.[sg][el]' >test-clang-ztv
10 sed -n "/^__ZTV.*s$i:/,/\.[sg][el]/p" test-gcc.s | grep -v '\.[sg][el]' >test-gcc-ztv
11 diff -U3 test-gcc-ztv test-clang-ztv
12 if [ $? != 0 ]; then
13 echo "FAIL: s$i vtable"
14 else
15 echo "PASS: s$i vtable"
16 fi
17 let i=i+1
18done