blob: 85c96eac86b64146c371b459324d0b6d5fbea02c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/bash
#
# ensure the httrack unit tests are available so that ut will not break
# the build in case of network outage
# test url
url=http://ut.httrack.com/enabled
# cache file name
cache=check-network_sh.cache
# cached result ?
if test -f $cache ; then
if grep -q "ok" $cache ; then
exit 0
else
exit 1
fi
fi
# fetch single file
if bash crawl-test.sh --errors 0 --files 1 --summary httrack --timeout=3 --max-time=3 "$url" 2>/dev/null >/dev/null ; then
echo "ok" > $cache
exit 0
else
echo "error" > $cache
exit 1
fi
|