#!/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} if [[ "${EMU_HACK}" != "no" ]] ; then touch game.001 fi python ../prepare_input.py --config $(basename $(pwd)) ref ${PREFIX} $1 stdout.out 2>stderr.out if [[ "${VERIFY}" != "no" ]] ; then echo "VERIFY" cmp stdout.out data/ref/output/crafty.out fi echo "OK"