repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
kernel: scheduling fix for ARM
[minix.git]
/
test
/
testinterp.sh
blob
b00c8e0e617a9f32e93be307f282ff7fa344c331
1
#!/bin/sh
2
3
# See if the system can handle an unexpected whitespace-only interpreter line
4
5
echo -n
"Test interpreter "
6
7
set -e
8
TMPSH
=
tst$$.sh
9
rm
-f
$TMPSH
10
echo
'#! '
>
$TMPSH
11
chmod
755
$TMPSH
12
.
/
$TMPSH
|| true
13
rm
-f
$TMPSH
14
echo
"ok"