summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Delaney <idella4@gentoo.org>2012-11-04 03:08:32 +0000
committerIan Delaney <idella4@gentoo.org>2012-11-04 03:08:32 +0000
commit68a675b69fd683257d53ec1726c45d9998bff693 (patch)
tree88511e22c0c076dad9eeb09b4ceb334b7ec803e4 /dev-python/codetools/files
parentstable ppc, bug #441470 (diff)
downloadhistorical-68a675b69fd683257d53ec1726c45d9998bff693.tar.gz
historical-68a675b69fd683257d53ec1726c45d9998bff693.tar.bz2
historical-68a675b69fd683257d53ec1726c45d9998bff693.zip
Patch added to fix broken test, fixes Bug # Bug 422949
Package-Manager: portage-2.1.11.30/cvs/Linux x86_64
Diffstat (limited to 'dev-python/codetools/files')
-rw-r--r--dev-python/codetools/files/codetools-4.0.0-test.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-python/codetools/files/codetools-4.0.0-test.patch b/dev-python/codetools/files/codetools-4.0.0-test.patch
new file mode 100644
index 000000000000..d376606945d8
--- /dev/null
+++ b/dev-python/codetools/files/codetools-4.0.0-test.patch
@@ -0,0 +1,16 @@
+Patch confirmed by upstream adding missing call to SkipTest
+https://github.com/enthought/codetools/issues/3
+
+diff -ur codetools-4.0.0.orig/codetools/blocks2/tests/test_block.py codetools-4.0.0/codetools/blocks2/tests/test_block.py
+--- codetools/blocks2/tests/test_block.py 2011-06-22 06:36:59.000000000 +0800
++++ codetools/blocks2/tests/test_block.py 2012-11-04 19:14:01.996051488 +0800
+@@ -9,6 +9,9 @@
+
+ def test_basic_01():
+ """Test basic use of a Block."""
++
++ raise SkipTest
++
+ code = 'x = 100\ny = x + 1'
+ b = Block(code)
+ assert_equal(b.inputs, set([]))