Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
65867047
Commit
65867047
authored
Sep 02, 2011
by
Howard Chu
Committed by
Quanah Gibson-Mount
Nov 02, 2011
Browse files
Fix log parsing, broken by
8d74f717
parent
70868ba9
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/scripts/test020-proxycache
View file @
65867047
...
...
@@ -314,13 +314,13 @@ FIRST=$CNT
# queries 2-6,8-10 are cacheable
CACHEABILITY
=
0111110111
grep
CACHEABLE
$LOG2
|
awk
'{
if ($
2
== "NOT")
if ($
3
== "NOT")
printf "Query %d not cacheable\n",NR
else
printf "Query %d cacheable\n",NR
}'
CACHED
=
`
grep
CACHEABLE
$LOG2
|
awk
'{
if ($
2
== "NOT")
if ($
3
== "NOT")
printf "0"
else
printf "1"
...
...
@@ -330,6 +330,8 @@ if test "$CACHEABILITY" = "$CACHED" ; then
echo
"Successfully verified cacheability"
else
echo
"Error in verifying cacheability"
echo
"
$CACHED
"
echo
"
$CACHEABILITY
"
test
$KILLSERVERS
!=
no
&&
kill
-HUP
$KILLPIDS
exit
1
fi
...
...
@@ -466,7 +468,7 @@ fi
ANSWERABILITY
=
1110011
grep
ANSWERABLE
$LOG2
|
awk
"BEGIN {FIRST=
$FIRST
}"
'{
if (NR > FIRST) {
if ($
2
== "NOT")
if ($
3
== "NOT")
printf "Query %d not answerable\n",NR
else
printf "Query %d answerable\n",NR
...
...
@@ -474,7 +476,7 @@ grep ANSWERABLE $LOG2 | awk "BEGIN {FIRST=$FIRST}"'{
}'
ANSWERED
=
`
grep
ANSWERABLE
$LOG2
|
awk
"BEGIN {FIRST=
$FIRST
}"
'{
if (NR > FIRST) {
if ($
2
== "NOT")
if ($
3
== "NOT")
printf "0"
else
printf "1"
...
...
@@ -535,7 +537,7 @@ if test $RC != 0 ; then
exit
$RC
fi
SLEEP
=
`
expr
$PCACHETTR
+
$PCACHE_CCPERIOD
`
SLEEP
=
`
expr
$PCACHETTR
+
$PCACHE_CCPERIOD
+ 1
`
echo
"Waiting
$SLEEP
seconds for cache to refresh"
sleep
$SLEEP
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment