Merge souce-cleanup branch into trunk
[SXSI/xpathcomp.git] / tests / testbu.sh
diff --git a/tests/testbu.sh b/tests/testbu.sh
deleted file mode 100755 (executable)
index 49f6191..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-declare -a QUERY
-QUERY[0]="/descendant::MedlineCitation/descendant::*/contains('brain')"
-QUERY[1]="/descendant::MedlineCitation/descendant::Country/contains('AUSTRALIA')"
-QUERY[2]="/descendant::Country/contains('AUSTRALIA')"
-QUERY[3]="/descendant::*/contains('1930')"
-QUERY[4]="/descendant::MedlineCitation/descendant::*/contains('1930')"
-QUERY[5]="/descendant::MedlineCitation/Article/AuthorList/Author/LastName/startswith('Bar')"
-QUERY[6]="/descendant::MedlineCitation[MedlineJournalInfo/Country/endswith('LAND')]"
-
-for ((i=0;i<=6;i++))
-do
-    echo Running query "$i" : "${QUERY[$i]}"
-    ../main -f 0 -b medline_05.srx "${QUERY[$i]}"
-
-done