blob: 602728b79f911a4a0b449c7303f0a564a7e2b1e7 [file] [log] [blame]
Shih-wei Liaoea285162010-06-04 12:34:56 -07001#!/bin/sh
2
3set -eu
4
5if [ $# != 1 ]; then
6 echo "usage: $0 <num-tests>"
7 exit 1
8fi
9
10dir=$(dirname $0)
11$dir/build.sh $1 &> /dev/null || true
12../summarize.sh $1 &> fails-x.txt
13cat fails-x.txt
14wc -l fails-x.txt