-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reused below test suites from neon source package: BASIC_TESTS: auth basic request session socket string-tests stubs uri-tests util-tests DAV_TESTS: acl3744 lock oldacl props xml xmlreq Overall execution time of above test suite is approximately 15sec. Signed-off-by: Neetika.Singh <[email protected]> Signed-off-by: Armin Kuster <[email protected]>
- Loading branch information
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/sh | ||
|
||
set -eux | ||
|
||
rm -f debug.log child.log | ||
|
||
ulimit -c unlimited | ||
ulimit -t 120 | ||
|
||
cd test | ||
echo foobar > foobar.txt | ||
|
||
BASIC_TESTS="auth basic redirect request session socket string-tests \ | ||
stubs uri-tests util-tests" | ||
DAV_TESTS="acl3744 lock oldacl props xml xmlreq" | ||
for t in $BASIC_TESTS $DAV_TESTS | ||
do | ||
echo "Running $t..." | ||
if "./$t" | ||
then | ||
echo "PASS:$t" | ||
else | ||
echo "FAIL:$t" | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters