fix typo, add test entry for nim

This commit is contained in:
Brian Seymour 2020-11-01 19:25:16 -06:00
parent a4039fa334
commit d218402a5f
2 changed files with 4 additions and 1 deletions

View File

@ -31,6 +31,8 @@ echo 'testing asm 32 bit'
../execute asm test.nasm ../execute asm test.nasm
echo 'testing asm 64 bit' echo 'testing asm 64 bit'
../execute asm64 test64.nasm ../execute asm64 test64.nasm
echo 'testing nim'
../execute nim test.nim
echo 'testing php' echo 'testing php'
../execute php test.php ../execute php test.php
echo 'testing perl' echo 'testing perl'

View File

@ -70,7 +70,8 @@ lxc-attach --clear-env -n piston -- /bin/bash -l -c "nasm -version"
echo '---' echo '---'
echo 'nim' echo 'nim'
lxc-attack --clear-env -n piston -- /bin/bash -l -c "nim -v | head -n1" lxc-attach --clear-env -n piston -- /bin/bash -l -c "nim -v | head -n1"
echo '---'
echo 'node' echo 'node'
lxc-attach --clear-env -n piston -- /bin/bash -l -c "node --version" lxc-attach --clear-env -n piston -- /bin/bash -l -c "node --version"