#47
authoradam <adamansky@gmail.com>
Sun, 10 Feb 2013 16:08:49 +0000 (23:08 +0700)
committeradam <adamansky@gmail.com>
Sun, 10 Feb 2013 16:08:49 +0000 (23:08 +0700)
tcejdb/configure
tcejdb/configure.ac
tcejdb/debian/changelog
tcejdb/testejdb/t2.c

index 2ecd533..127d608 100755 (executable)
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for tcejdb 1.0.61.
+# Generated by GNU Autoconf 2.69 for tcejdb 1.0.62.
 #
 #
 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -577,8 +577,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='tcejdb'
 PACKAGE_TARNAME='tcejdb'
-PACKAGE_VERSION='1.0.61'
-PACKAGE_STRING='tcejdb 1.0.61'
+PACKAGE_VERSION='1.0.62'
+PACKAGE_STRING='tcejdb 1.0.62'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -1258,7 +1258,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures tcejdb 1.0.61 to adapt to many kinds of systems.
+\`configure' configures tcejdb 1.0.62 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1319,7 +1319,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of tcejdb 1.0.61:";;
+     short | recursive ) echo "Configuration of tcejdb 1.0.62:";;
    esac
   cat <<\_ACEOF
 
@@ -1426,7 +1426,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-tcejdb configure 1.0.61
+tcejdb configure 1.0.62
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1724,7 +1724,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by tcejdb $as_me 1.0.61, which was
+It was created by tcejdb $as_me 1.0.62, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -4893,7 +4893,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by tcejdb $as_me 1.0.61, which was
+This file was extended by tcejdb $as_me 1.0.62, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -4946,7 +4946,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-tcejdb config.status 1.0.61
+tcejdb config.status 1.0.62
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
index 953df5e..869c674 100644 (file)
@@ -11,7 +11,7 @@ test -n "$CPPFLAGS" && MYCPPFLAGS="$CPPFLAGS $MYCPPFLAGS"
 test -n "$LDFLAGS" && MYLDFLAGS="$LDFLAGS $MYLDFLAGS"
 
 # Package name
-AC_INIT(tcejdb, 1.0.61)
+AC_INIT(tcejdb, 1.0.62)
 
 # Package information
 MYLIBVER=9
index 7f8ce71..f8c9d5b 100644 (file)
@@ -1,4 +1,4 @@
-libtcejdb (1.0.61) unstable; urgency=low
+libtcejdb (1.0.62) unstable; urgency=low
 
   * Fixed version number in tcutil.h 
 
index a1f6c29..6d3ebbf 100644 (file)
@@ -1942,7 +1942,7 @@ void testQuery23() {
 
     bson bsq1;
     bson_init_as_query(&bsq1);
-    bson_append_regex(&bsq1, "name", "(IvaNov$|АНтоноВ$)", "i");
+    bson_append_regex(&bsq1, "name", "(IvaNov$|John\\ TraVolta$)", "i");
     bson_finish(&bsq1);
     CU_ASSERT_FALSE_FATAL(bsq1.err);
 
@@ -1974,7 +1974,7 @@ void testQuery23() {
 
     for (int i = 0; i < TCLISTNUM(q1res); ++i) {
         if (i == 0) {
-            CU_ASSERT_FALSE(bson_compare_string("Антонов", TCLISTVALPTR(q1res, i), "name"));
+            CU_ASSERT_FALSE(bson_compare_string("John Travolta", TCLISTVALPTR(q1res, i), "name"));
         } else if (i == 1) {
             CU_ASSERT_FALSE(bson_compare_string("Ivanov", TCLISTVALPTR(q1res, i), "name"));
         } else {