1#!/bin/sh 2 3RET=0; 4 5for FILE in $(find . -name \"*.test.html\") 6do 7 8 phantomjs phantom-qunit.js file://$(pwd)/$FILE 9 RET=$(($RET + $?)) 10done 11 12exit $RET