I have all tests except one passing with the Oracle backend on 2.7.2
and 3.2.2 with the same codebase. The one failure I get (the same on
2.7 and 3.2) appears to be related to my Oracle configuration - I
haven't tracked it down yet.

Tests were run on Linux Mint 12 32-bit, using Oracle 10g XE (Express
Edition) using cx_Oracle 5.1.1 installed via pip into virtual envs for
2.7 and 3.2. Results:

Python 2.7
========
FAILED (failures=1, skipped=76, expected failures=3)
======================================================================
FAIL: test_unicode_data (modeltests.basic.tests.ModelTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/vinay/projects/django3/tests/modeltests/basic/tests.py",
line 496, in test_unicode_data
    u('\u6797\u539f \u3081\u3050\u307f'))
AssertionError: u'\xbf\xbf \xbf\xbf\xbf' != u'\u6797\u539f
\u3081\u3050\u307f'
- \xbf\xbf \xbf\xbf\xbf
+ \u6797\u539f \u3081\u3050\u307f

Python 3.2
========
FAILED (failures=1, skipped=82, expected failures=2, unexpected
successes=1)
======================================================================
FAIL: test_unicode_data (modeltests.basic.tests.ModelTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/vinay/projects/django3/tests/modeltests/basic/tests.py",
line 496, in test_unicode_data
    u('\u6797\u539f \u3081\u3050\u307f'))
AssertionError: '¿¿ ¿¿¿' != '林原 めぐみ'
- ¿¿ ¿¿¿
+ 林原 めぐみ

Any pointers as to the cause of the remaining failure (which is an old
problem[1]) would be appreciated.

So we now have good results on SQLite, PostgreSQL, MySQL and Oracle,
which I believe is all of the backends which ship with Django - have I
missed any?

Regards,

Vinay Sajip

[1] 
http://groups.google.com/group/django-developers/browse_thread/thread/15b710ba6912998d/63e9559398a13660

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@googlegroups.com.
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.

Reply via email to