From 93e4eeecaf4b9b964488f5d015831190e3967df4 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 1 Oct 2013 18:26:59 +0200 Subject: [PATCH] test_facets require YAZ 4.2.68 The subtle reason is that YAZ 4.2.68 recognizes facets in both additionalSearchInfo and otherInfo of a searchRequest. --- test/test_facets.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_facets.sh b/test/test_facets.sh index c35bbec..6f22f01 100755 --- a/test/test_facets.sh +++ b/test/test_facets.sh @@ -11,7 +11,7 @@ F='' for p in $PATH; do if test -x $p/yaz-ztest -a -x $p/yaz-client; then VERSION=`$p/yaz-client -V|awk '{print $3;}'|awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'` - if test $VERSION -ge 4002000; then + if test $VERSION -ge 4002042; then F=$p/yaz-ztest break fi -- 1.7.10.4