summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2010-01-03 19:03:33 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2010-01-03 19:03:33 +0000
commit5d75b3d5c4b9dd8fa2837f47843dd78aadb94666 (patch)
tree848f60a4794ffb9efaef5ac50b6c115ddd7a921f /docs
parent07fa03dde4b027f9add2735f2c12907894631318 (diff)
[1.1.X] Added backwards incompatibility note to 1.1.2 release notes for the change in test runner exit status codes (refs #11615).
Backport of r12070 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12071 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.1.2.txt15
1 files changed, 14 insertions, 1 deletions
diff --git a/docs/releases/1.1.2.txt b/docs/releases/1.1.2.txt
index 64bbdd5dde..4c887ad4a5 100644
--- a/docs/releases/1.1.2.txt
+++ b/docs/releases/1.1.2.txt
@@ -19,8 +19,21 @@ development or deployment currently using or targeting Django 1.1.
For full details on the new features, backwards incompatibilities, and
deprecated features in the 1.1 branch, see the :ref:`releases-1.1`.
+Backwards-incompatible changes in 1.1.2
+=======================================
+
+Test runner exit status code
+----------------------------
+
+The exit status code of the test runners (``tests/runtests.py`` and ``python
+manage.py test``) no longer represents the number of failed tests, since a
+failure of 256 or more tests resulted in a wrong exit status code. The exit
+status code for the test runner is now 0 for success (no failing tests) and 1
+for any number of test failures. If needed, the number of test failures can be
+found at the end of the test runner's output.
+
One new feature
----------------
+===============
Ordinarily, a point release would not include new features, but in the
case of Django 1.1.2, we have made an exception to this rule. Django