kmt@lbox:~/django/trunk/tests$ python runtests.py --settings=testsettings
/home/kmt/django/trunk/tests/regressiontests/templates/loaders.py:14: UserWarning: Module _mysql was already imported from /var/lib/python-support/python2.5/_mysql.so, but /var/lib/python-support/python2.5 is being added to sys.path
  import pkg_resources
/home/kmt/django/trunk/django/db/models/sql/query.py:1615: Warning: Incorrect string value: '\xE6\x9E\x97\xE5\x8E\x9F...' for column 'headline' at row 1
  cursor.execute(sql, params)
/home/kmt/django/trunk/django/db/models/sql/query.py:1615: Warning: Incorrect string value: '\xC5\xBA\xC5\x84' for column 'code' at row 1
  cursor.execute(sql, params)
/home/kmt/django/trunk/django/db/models/sql/query.py:1615: Warning: Incorrect string value: '\xC5\xBC\xC3\xB3\xC5\x82...' for column 'name' at row 1
  cursor.execute(sql, params)
/home/kmt/django/trunk/django/db/models/sql/query.py:1615: Warning: Incorrect string value: '\xC5\xBC\xC3\xB3\xC5\x82...' for column 'actor_id' at row 1
  cursor.execute(sql, params)
/home/kmt/django/trunk/django/db/models/sql/query.py:1615: Warning: Incorrect string value: '\xC4\x99\xC5\x9Bl\xC4...' for column 'title' at row 1
  cursor.execute(sql, params)
/home/kmt/django/trunk/django/db/models/sql/query.py:1615: Warning: Incorrect string value: '\xE6\x88\x91\xE9\x9A\xBB...' for column 'file' at row 1
  cursor.execute(sql, params)
======================================================================
FAIL: Doctest: modeltests.basic.models.__test__.API_TESTS
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/kmt/django/trunk/django/test/_doctest.py", line 2180, in runTest
    raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for modeltests.basic.models.__test__.API_TESTS
  File "/home/kmt/django/trunk/tests/modeltests/basic/models.py", line unknown line number, in API_TESTS

----------------------------------------------------------------------
File "/home/kmt/django/trunk/tests/modeltests/basic/models.py", line ?, in modeltests.basic.models.__test__.API_TESTS
Failed example:
    Article.objects.get(pk=a.id).headline
Expected:
    u'\u6797\u539f \u3081\u3050\u307f'
Got:
    u'?? ???'


======================================================================
FAIL: Doctest: regressiontests.string_lookup.models.__test__.API_TESTS
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/kmt/django/trunk/django/test/_doctest.py", line 2180, in runTest
    raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for regressiontests.string_lookup.models.__test__.API_TESTS
  File "/home/kmt/django/trunk/tests/regressiontests/string_lookup/models.py", line unknown line number, in API_TESTS

----------------------------------------------------------------------
File "/home/kmt/django/trunk/tests/regressiontests/string_lookup/models.py", line ?, in regressiontests.string_lookup.models.__test__.API_TESTS
Failed example:
    Foo.objects.get(friend__contains=u'\xe7')
Exception raised:
    Traceback (most recent call last):
      File "/home/kmt/django/trunk/django/test/_doctest.py", line 1267, in __run
        compileflags, 1) in test.globs
      File "<doctest regressiontests.string_lookup.models.__test__.API_TESTS[18]>", line 1, in <module>
        Foo.objects.get(friend__contains=u'\xe7')
      File "/home/kmt/django/trunk/django/db/models/manager.py", line 82, in get
        return self.get_query_set().get(*args, **kwargs)
      File "/home/kmt/django/trunk/django/db/models/query.py", line 301, in get
        % self.model._meta.object_name)
    DoesNotExist: Foo matching query does not exist.
----------------------------------------------------------------------
File "/home/kmt/django/trunk/tests/regressiontests/string_lookup/models.py", line ?, in regressiontests.string_lookup.models.__test__.API_TESTS
Failed example:
    Foo.objects.get(friend__contains='\xc3\xa7')
Exception raised:
    Traceback (most recent call last):
      File "/home/kmt/django/trunk/django/test/_doctest.py", line 1267, in __run
        compileflags, 1) in test.globs
      File "<doctest regressiontests.string_lookup.models.__test__.API_TESTS[19]>", line 1, in <module>
        Foo.objects.get(friend__contains='\xc3\xa7')
      File "/home/kmt/django/trunk/django/db/models/manager.py", line 82, in get
        return self.get_query_set().get(*args, **kwargs)
      File "/home/kmt/django/trunk/django/db/models/query.py", line 301, in get
        % self.model._meta.object_name)
    DoesNotExist: Foo matching query does not exist.


======================================================================
FAIL: Doctest: regressiontests.model_inheritance_regress.models.__test__.API_TESTS
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/kmt/django/trunk/django/test/_doctest.py", line 2180, in runTest
    raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for regressiontests.model_inheritance_regress.models.__test__.API_TESTS
  File "/home/kmt/django/trunk/tests/regressiontests/model_inheritance_regress/models.py", line unknown line number, in API_TESTS

----------------------------------------------------------------------
File "/home/kmt/django/trunk/tests/regressiontests/model_inheritance_regress/models.py", line ?, in regressiontests.model_inheritance_regress.models.__test__.API_TESTS
Failed example:
    [sorted(d.items()) for d in dicts]
Expected:
    [[('name', u"Guido's House of Pasta"), ('serves_hot_dogs', True)]]
Got:
    [[('name', u"Guido's House of Pasta"), ('serves_hot_dogs', 1)]]
----------------------------------------------------------------------
File "/home/kmt/django/trunk/tests/regressiontests/model_inheritance_regress/models.py", line ?, in regressiontests.model_inheritance_regress.models.__test__.API_TESTS
Failed example:
    [sorted(d.items()) for d in dicts]
Expected:
    [[('name', u"Guido's House of Pasta"), ('serves_gnocchi', True), ('serves_hot_dogs', True)]]
Got:
    [[('name', u"Guido's House of Pasta"), ('serves_gnocchi', 1), ('serves_hot_dogs', 1)]]
----------------------------------------------------------------------
File "/home/kmt/django/trunk/tests/regressiontests/model_inheritance_regress/models.py", line ?, in regressiontests.model_inheritance_regress.models.__test__.API_TESTS
Failed example:
    [sorted(d.items()) for d in dicts]
Expected:
    [[('name', u"Guido's All New House of Pasta"), ('serves_hot_dogs', False)]]
Got:
    [[('name', u"Guido's All New House of Pasta"), ('serves_hot_dogs', 0)]]
----------------------------------------------------------------------
File "/home/kmt/django/trunk/tests/regressiontests/model_inheritance_regress/models.py", line ?, in regressiontests.model_inheritance_regress.models.__test__.API_TESTS
Failed example:
    [sorted(d.items()) for d in dicts]
Expected:
    [[('name', u"Guido's All New House of Pasta"), ('serves_gnocchi', False), ('serves_hot_dogs', False)]]
Got:
    [[('name', u"Guido's All New House of Pasta"), ('serves_gnocchi', 0), ('serves_hot_dogs', 0)]]
----------------------------------------------------------------------
File "/home/kmt/django/trunk/tests/regressiontests/model_inheritance_regress/models.py", line ?, in regressiontests.model_inheritance_regress.models.__test__.API_TESTS
Failed example:
    [sorted(d.items()) for d in dicts]
Expected:
    [[('name', u"Guido's All New House of Pasta"), ('serves_gnocchi', False), ('serves_hot_dogs', False)]]
Got:
    [[('name', u"Guido's All New House of Pasta"), ('serves_gnocchi', 0), ('serves_hot_dogs', 0)]]


----------------------------------------------------------------------
Ran 417 tests in 1698.765s

FAILED (failures=3)
kmt@lbox:~/django/trunk/tests$ cd ..
kmt@lbox:~/django/trunk$ svn status -u
?                   8102-2.diff
?                   8102.diff
?                   tests/testsettings.py
?                   tests/patch_failures.txt
Status against revision:   8207
kmt@lbox:~/django/trunk$ 

