view dotest @ 0:b8fca1c0f503

intial commit
author anatofuz
date Sat, 03 Nov 2018 22:49:27 +0900
parents
children 665fb2069aec
line wrap: on
line source

#!/bin/zsh
if [ $# -ne 1 ]; then
	echo 'useage:) $cbc-tools/this.sh vmtest/nqp'
	exit 1
fi

NQP_ORIGINAL="/mnt/dalmore-home/one/src/MoarVM_Original/nqp"
TARGET_DIR=$1

foreach testmoar (${TARGET_DIR}/*.moarvm)
	echo $testmoar
        ../MoarVM/moar --libpath=${NQP_ORIGINAL}/gen/moar/stage2 $testmoar
end