git @ Cat's Eye Technologies Tamsin / master test-codegen.sh
master

Tree @master (Download .tar.gz)

test-codegen.sh @master — raw · history · blame

#!/bin/sh

# SPDX-FileCopyrightText: Chris Pressey, the creator of this work, has dedicated it to the public domain.
# For more information, please refer to <https://unlicense.org/>
# SPDX-License-Identifier: Unlicense

YES="
eg/hello-world.tamsin eg/bits.tamsin eg/bitpair.tamsin
eg/exciting-long.tamsin eg/list-of-chars.tamsin
eg/modules.tamsin
"

FILES="eg/reverse.tamsin"

NO="eg/eval-bool-expr.tamsin"

for FILE in $FILES; do
  tamsin codegen $FILE || exit 1
done