KLL Compiler
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。

sanity.bash 380B

123456789101112131415161718192021222324
  1. #!/bin/bash
  2. # Basic sanity check for kll compiler
  3. # Currently runs both versions of the compiler
  4. # Jacob Alexander 2016
  5. SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
  6. # Common functions
  7. source ${SCRIPT_DIR}/common.bash
  8. # Start in kll top-level directory
  9. cd ${SCRIPT_DIR}/..
  10. ## Tests
  11. cmd ./kll.py --version
  12. cmd ./kll --version
  13. ## Tests complete
  14. result
  15. exit $?