| OLD | NEW |
| 1 [= autogen5 template sh=check.sh =] | 1 [= autogen5 template sh=check.sh =] |
| 2 [= | 2 [= |
| 3 # | 3 # |
| 4 # This file contanes the shell template to run tests on the fixes | 4 # This file contains the shell template to run tests on the fixes |
| 5 # | 5 # |
| 6 =]#!/bin/sh | 6 =]#!/bin/sh |
| 7 | 7 |
| 8 set -e | 8 set -e |
| 9 TESTDIR=tests | 9 TESTDIR=tests |
| 10 TESTBASE=`cd $1;${PWDCMD-pwd}` | 10 TESTBASE=`cd $1;${PWDCMD-pwd}` |
| 11 | 11 |
| 12 [ -d ${TESTDIR} ] || mkdir ${TESTDIR} | 12 [ -d ${TESTDIR} ] || mkdir ${TESTDIR} |
| 13 cd ${TESTDIR} | 13 cd ${TESTDIR} |
| 14 TESTDIR=`${PWDCMD-pwd}` | 14 TESTDIR=`${PWDCMD-pwd}` |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 rmdir ${TESTDIR} > /dev/null 2>&1 || : | 168 rmdir ${TESTDIR} > /dev/null 2>&1 || : |
| 169 echo All fixinclude tests pass >&2 | 169 echo All fixinclude tests pass >&2 |
| 170 else | 170 else |
| 171 echo There were fixinclude test FAILURES >&2 | 171 echo There were fixinclude test FAILURES >&2 |
| 172 fi | 172 fi |
| 173 $exitok[= | 173 $exitok[= |
| 174 | 174 |
| 175 (if (defined? 'set-writable) (set-writable)) | 175 (if (defined? 'set-writable) (set-writable)) |
| 176 | 176 |
| 177 =] | 177 =] |
| OLD | NEW |