2007.
[idzebra-moved-to-github.git] / test / api / t7.c
index a57726c..1d6e447 100644 (file)
@@ -1,5 +1,5 @@
-/* $Id: t7.c,v 1.11 2006-03-31 15:58:05 adam Exp $
-   Copyright (C) 1995-2005
+/* $Id: t7.c,v 1.15 2007-01-15 15:10:20 adam Exp $
+   Copyright (C) 1995-2007
    Index Data ApS
 
 This file is part of the Zebra server.
@@ -15,9 +15,9 @@ FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 for more details.
 
 You should have received a copy of the GNU General Public License
-along with Zebra; see the file LICENSE.zebra.  If not, write to the
-Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-02111-1307, USA.
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
 */
 
 /** t7.c sorting  */
@@ -43,7 +43,7 @@ static void tst(int argc, char **argv)
     ODR odr_output = odr_createmem (ODR_ENCODE);    
     YAZ_PQF_Parser parser = yaz_pqf_create();
     Z_RPNQuery *query = yaz_pqf_parse(parser, odr_input, "@attr 1=4 my");
-    Z_SortKeySpecList *spec = yaz_sort_spec (odr_output, "1=4 <");
+    Z_SortKeySpecList *spec = yaz_sort_spec (odr_output, "1=4 <!");
     zint hits;
 
     YAZ_CHECK(tl_init_data(zh, recs));
@@ -59,7 +59,7 @@ static void tst(int argc, char **argv)
     YAZ_CHECK(zebra_sort(zh, odr_output, 1, &setname2, setname3, spec, 
                         &status) == ZEBRA_OK);
 
-    spec = yaz_sort_spec(odr_output, "1=5 <"); /* invalid sort spec */
+    spec = yaz_sort_spec(odr_output, "1=5 <!"); /* invalid sort spec */
 
     YAZ_CHECK(zebra_sort(zh, odr_output, 1, &setname1, setname2, spec,
                         &status) == ZEBRA_FAIL);
@@ -81,3 +81,11 @@ static void tst(int argc, char **argv)
 }
 
 TL_MAIN
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+