patch-runtests_sh 443 B

12345678910111213
  1. $OpenBSD: patch-runtests_sh,v 1.1 2015/12/01 08:16:16 jasper Exp $
  2. https://github.com/MtnViewJohn/context-free/pull/5
  3. --- runtests.sh.orig Wed Nov 25 09:55:19 2015
  4. +++ runtests.sh Wed Nov 25 09:55:24 2015
  5. @@ -1,4 +1,4 @@
  6. -#!/bin/bash
  7. +#!/bin/sh
  8. mkdir output
  9. for file in input/tests/*.cfdg input/*.cfdg ; do echo -n "$file "; if ./cfdg -Pq "$file" output/test.png ; then echo ' pass' ; : ; else echo ' FAIL' ; break; fi ; done