[issue11193] test_subprocess error on AIX

2018-08-26 Thread Michael Felt
Change by Michael Felt : -- keywords: +patch pull_requests: +8412 stage: -> patch review ___ Python tracker ___ ___

[issue11193] test_subprocess error on AIX

2018-08-26 Thread Michael Felt
Michael Felt added the comment: Short Version: root@x065:[/data/prj/python/python3-3.8]./python -m test test_subprocess Run tests sequentially 0:00:00 [1/1] test_subprocess test_subprocess passed in 2 min 18 sec == Tests result: SUCCESS == 1 test OK. Total duration: 2 min 18 sec Tests

[issue11193] test_subprocess error on AIX

2016-07-25 Thread Michael Felt
Michael Felt added the comment: Seems to be okay at least with Python 3.6 "test" version - but maybe there is better way to call these tests - just to be sure the one needed is not being skipped. On AIX 5.3 TL7 SP0: root@x064:[/data/prj/aixtools/python/python-3.6.0.162/Lib/test]../../python

[issue11193] test_subprocess error on AIX

2013-06-19 Thread David Edelsohn
Changes by David Edelsohn dje@gmail.com: -- components: +Interpreter Core nosy: +David.Edelsohn type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11193 ___

[issue11193] test_subprocess error on AIX

2013-03-16 Thread STINNER Victor
STINNER Victor added the comment: ping myself -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11193 ___ ___ Python-bugs-list mailing list

[issue11193] test_subprocess error on AIX

2011-02-14 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I don't understand why the test pass on FreeBSD, Solaris and Mac OS X, but not on AIX. Oh, the command line and the filesystem encodings may be different. test_undecodable_env() of test_subprocess.py uses os.environ which uses

[issue11193] test_subprocess error on AIX

2011-02-14 Thread Sébastien Sablé
Sébastien Sablé sa...@users.sourceforge.net added the comment: I am not sure this is what you want: LC_ALL=C ./python Python 3.2rc3 (py3k:88417M, Feb 14 2011, 10:37:42) [GCC 4.2.0] on aix6 Type help, copyright, credits or license for more information. import sys sys.getfilesystemencoding()

[issue11193] test_subprocess error on AIX

2011-02-14 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: sys.getfilesystemencoding() 'iso8859-1' Ok, I expected this result. Can you also try: $ LC_ALL=C ./python -c import sys; print(ascii(sys.argv)) $(echo -ne abc\xff) ['-c', 'abc\udcff'] $ LC_ALL=C python3.1 -c import locale;

[issue11193] test_subprocess error on AIX

2011-02-14 Thread Sébastien Sablé
Sébastien Sablé sa...@users.sourceforge.net added the comment: $ LANG=C ./python -Wd -E -bb -c import sys; print(ascii(sys.argv)) $(echo -ne abc\xff)['-c', 'abc\xff'] ['-c', 'abc\xff'] $ LANG=C ./python -Wd -E -bb -c import locale; print(locale.nl_langinfo(locale.CODESET)) ISO8859-1 $ LANG=C

[issue11193] test_subprocess error on AIX

2011-02-11 Thread Sébastien Sablé
New submission from Sébastien Sablé sa...@users.sourceforge.net: The following tests fail in test_subprocess on AIX: == FAIL: test_undecodable_env (test.test_subprocess.POSIXProcessTestCase)

[issue11193] test_subprocess error on AIX

2011-02-11 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Perhaps related to the test_locale failure in issue11190. -- nosy: +haypo, pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11193 ___

[issue11193] test_subprocess error on AIX

2011-02-11 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: test_undecodable_code() in test_cmd_line had a similar issue: on FreeBSD, Solaris and Mac OS X, even if the locale is C (and nl_langinfo(CODESET) announces ASCII), _Py_char2wchar() (mbstowcs) decoded b'\xff' as '\xff' (use