comparison dotest @ 0:b8fca1c0f503

intial commit
author anatofuz
date Sat, 03 Nov 2018 22:49:27 +0900
parents
children 665fb2069aec
comparison
equal deleted inserted replaced
-1:000000000000 0:b8fca1c0f503
1 #!/bin/zsh
2 if [ $# -ne 1 ]; then
3 echo 'useage:) $cbc-tools/this.sh vmtest/nqp'
4 exit 1
5 fi
6
7 NQP_ORIGINAL="/mnt/dalmore-home/one/src/MoarVM_Original/nqp"
8 TARGET_DIR=$1
9
10 foreach testmoar (${TARGET_DIR}/*.moarvm)
11 echo $testmoar
12 ../MoarVM/moar --libpath=${NQP_ORIGINAL}/gen/moar/stage2 $testmoar
13 end