Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/codetools/files: codetools-4.0.0-test.patch
Date: Sun, 04 Nov 2012 03:08:50
Message-Id: 20121104030832.DBE8A215FF@flycatcher.gentoo.org
1 idella4 12/11/04 03:08:32
2
3 Added: codetools-4.0.0-test.patch
4 Log:
5 Patch added to fix broken test, fixes Bug # Bug 422949
6
7 (Portage version: 2.1.11.30/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.1 dev-python/codetools/files/codetools-4.0.0-test.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/codetools/files/codetools-4.0.0-test.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/codetools/files/codetools-4.0.0-test.patch?rev=1.1&content-type=text/plain
14
15 Index: codetools-4.0.0-test.patch
16 ===================================================================
17 Patch confirmed by upstream adding missing call to SkipTest
18 https://github.com/enthought/codetools/issues/3
19
20 diff -ur codetools-4.0.0.orig/codetools/blocks2/tests/test_block.py codetools-4.0.0/codetools/blocks2/tests/test_block.py
21 --- codetools/blocks2/tests/test_block.py 2011-06-22 06:36:59.000000000 +0800
22 +++ codetools/blocks2/tests/test_block.py 2012-11-04 19:14:01.996051488 +0800
23 @@ -9,6 +9,9 @@
24
25 def test_basic_01():
26 """Test basic use of a Block."""
27 +
28 + raise SkipTest
29 +
30 code = 'x = 100\ny = x + 1'
31 b = Block(code)
32 assert_equal(b.inputs, set([]))