forked from github/server
debug output
This commit is contained in:
parent
ca6448ec23
commit
50f22d7c2f
1 changed files with 2 additions and 0 deletions
|
@ -19,6 +19,7 @@ expr=$2
|
||||||
expect=$3
|
expect=$3
|
||||||
count=`grep -cE $expr $file`
|
count=`grep -cE $expr $file`
|
||||||
[ $count -eq $expect ] || quit 1 "expected $expect counts of $expr in $file, got $count"
|
[ $count -eq $expect ] || quit 1 "expected $expect counts of $expr in $file, got $count"
|
||||||
|
echo "PASS: $expr is $expect"
|
||||||
}
|
}
|
||||||
|
|
||||||
ROOT=`pwd`
|
ROOT=`pwd`
|
||||||
|
@ -38,6 +39,7 @@ SERVER="$VALGRIND --track-origins=yes --gen-suppressions=all --suppressions=$SUP
|
||||||
fi
|
fi
|
||||||
echo "running $SERVER"
|
echo "running $SERVER"
|
||||||
$SERVER -t 184 ../scripts/run-turn.lua
|
$SERVER -t 184 ../scripts/run-turn.lua
|
||||||
|
echo "integration tests"
|
||||||
[ -d reports ] || quit 4 "no reports directory created"
|
[ -d reports ] || quit 4 "no reports directory created"
|
||||||
CRFILE=185-zvto.cr
|
CRFILE=185-zvto.cr
|
||||||
for file in $NEWFILES reports/$CRFILE ; do
|
for file in $NEWFILES reports/$CRFILE ; do
|
||||||
|
|
Loading…
Reference in a new issue