#!/bin/bash # Copyright (c) 2011 The Native Client Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. set -o nounset set -o errexit PREFIX=${PREFIX:-} VERIFY=${VERIFY:-yes} EMU_HACK=${EMU_HACK:-yes} python ../prepare_input.py --config $(basename $(pwd)) ref ${PREFIX} $1 ${DASHDASH} -frames 1000 -meshfile mesa.in -ppmfile mesa.ppm >mesa.out 2>mesa.err if [[ "${VERIFY}" != "no" ]] ; then echo "VERIFY" cmp mesa.log data/ref/output/mesa.log ../specdiff.sh -a 6 -l 10 mesa.ppm data/ref/output/mesa.ppm fi echo "OK"