run executable stuff

This commit is contained in:
Thomas Levine 2012-10-08 08:59:14 -04:00
parent 05c478baa9
commit 6685bc6182
8 changed files with 16 additions and 3 deletions

View File

@ -0,0 +1 @@
blah

View File

@ -0,0 +1,3 @@
#!/bin/sh
test -d /bin

View File

@ -0,0 +1,3 @@
#!/bin/sh
grep blah fixtures/bladyblah > /dev/null

View File

@ -0,0 +1,3 @@
#!/bin/sh
! test -e /aoeuaoeuaoeu

View File

@ -0,0 +1,3 @@
#!/bin/sh
test -d /

6
urchin
View File

@ -12,10 +12,10 @@ recurse() {
done
[ -f teardown ] && sh teardown
)
elif [ -f "$potential_test" ]
elif [ -x "$potential_test" ]
then
sh "$potential_test"
if [ "$@" = '0' ]
./"$potential_test"
if [ "$?" = '0' ]
then
# Print a '.'
echo -n .