]> git.pld-linux.org Git - packages/python3.git/blame - python3-no_cmdline_tests.patch
- use system expat
[packages/python3.git] / python3-no_cmdline_tests.patch
CommitLineData
7c36c372
JK
1diff -dur Python-3.2.1.orig/Lib/test/regrtest.py Python-3.2.1/Lib/test/regrtest.py
2--- Python-3.2.1.orig/Lib/test/regrtest.py 2011-07-09 08:58:49.000000000 +0200
3+++ Python-3.2.1/Lib/test/regrtest.py 2011-07-15 15:21:06.000000000 +0200
cd7dc766
JK
4@@ -216,7 +216,7 @@
5
6 from test import support
7
8-RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network',
9+RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network', 'cmdline',
10 'decimal', 'cpu', 'subprocess', 'urlfetch', 'gui')
11
12 TEMPDIR = os.path.abspath(tempfile.gettempdir())
7c36c372
JK
13diff -dur Python-3.2.1.orig/Lib/test/test_compileall.py Python-3.2.1/Lib/test/test_compileall.py
14--- Python-3.2.1.orig/Lib/test/test_compileall.py 2011-07-09 08:58:50.000000000 +0200
15+++ Python-3.2.1/Lib/test/test_compileall.py 2011-07-15 15:21:06.000000000 +0200
cd7dc766
JK
16@@ -130,7 +130,7 @@
17 finally:
18 sys.stdout = orig_stdout
19
20-
21+@unittest.skipUnless(support.is_resource_enabled("cmdline"), "python cmdline tests disabled")
22 class CommandLineTests(unittest.TestCase):
23 """Test compileall's CLI."""
24
7c36c372
JK
25diff -dur Python-3.2.1.orig/Lib/test/test_warnings.py Python-3.2.1/Lib/test/test_warnings.py
26--- Python-3.2.1.orig/Lib/test/test_warnings.py 2011-07-09 08:58:51.000000000 +0200
27+++ Python-3.2.1/Lib/test/test_warnings.py 2011-07-15 15:21:06.000000000 +0200
cd7dc766
JK
28@@ -715,6 +715,7 @@
29 module = py_warnings
30
31
32+@unittest.skipUnless(support.is_resource_enabled("cmdline"), "python cmdline tests disabled")
33 class EnvironmentVariableTests(BaseTest):
34
35 def test_single_warning(self):
36@@ -760,14 +761,17 @@
37 "['ignore:DeprecaciónWarning']".encode('utf-8'))
38 self.assertEqual(p.wait(), 0)
39
40+@unittest.skipUnless(support.is_resource_enabled("cmdline"), "python cmdline tests disabled")
41 class CEnvironmentVariableTests(EnvironmentVariableTests):
42 module = c_warnings
43
44+@unittest.skipUnless(support.is_resource_enabled("cmdline"), "python cmdline tests disabled")
45 class PyEnvironmentVariableTests(EnvironmentVariableTests):
46 module = py_warnings
47
48
49 class BootstrapTest(unittest.TestCase):
50+ @unittest.skipUnless(support.is_resource_enabled("cmdline"), "python cmdline tests disabled")
51 def test_issue_8766(self):
52 # "import encodings" emits a warning whereas the warnings is not loaded
53 # or not completely loaded (warnings imports indirectly encodings by
This page took 0.134602 seconds and 4 git commands to generate.