This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: 3.0a1 make test Error on Solaris w/ SUN C/C++
Type: Stage:
Components: Tests Versions: Python 3.0
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: MrJean1, christian.heimes, gvanrossum
Priority: normal Keywords:

Created on 2007-10-29 17:08 by MrJean1, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
log.make_test MrJean1, 2007-10-29 17:07
log.verbose MrJean1, 2007-10-29 18:45
Messages (6)
msg56910 - (view) Author: Jean Brouwers (MrJean1) Date: 2007-10-29 17:07
The 3.0a1 Solaris build (see issue #1356) fails at the end of  make test 
with the following error:

....
test_zlib
278 tests OK.
5 tests failed:
    test_cookielib test_email test_fileio test_pipes test_uuid
39 tests skipped:
    test_aepack test_applesingle test_bsddb test_bsddb3
    test_codecmaps_cn test_codecmaps_hk test_codecmaps_jp
    test_codecmaps_kr test_codecmaps_tw test_ctypes test_curses
    test_gdbm test_hashlib test_hmac test_macostools
    test_normalization test_ossaudiodev test_pep277 test_plistlib
    test_scriptpackages test_socket_ssl test_socketserver test_sqlite
    test_ssl test_startfile test_sundry test_tarfile test_tcl
    test_timeout test_unicode_file test_unicodedata test_urllib2
    test_urllib2_localnet test_urllib2net test_urllibnet test_winreg
    test_winsound test_xmlrpc_net test_zipfile64
11 skips unexpected on sunos5:
    test_hashlib test_hmac test_urllib2_localnet test_urllib2net
    test_ctypes test_urllib2 test_tcl test_sundry test_ssl
    test_tarfile test_unicodedata
*** Error code 1
make: Fatal error: Command failed for target `test'

The entire log of  make test is attached.  If you need other make or  
configure logs or if I should rebuild with other options, let me know.
msg56918 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2007-10-29 17:52
Please run the test suite in verbose mode and attach the output:

$ ./python Lib/test/regrtest.py -v test_cookielib test_email test_fileio
test_pipes test_uuid

You seem to missing some packages to build additional extensions. Can
you install sqlite, openssl, readline, TCL/TK, curses and BSDDB?
msg56922 - (view) Author: Jean Brouwers (MrJean1) Date: 2007-10-29 18:45
Unfortunately, I can't install the missing package right now.  But here is 
to log file from the verbose tests.  It looks like all errors are due to 
the missing _md5 module.
msg56931 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2007-10-29 20:56
If this report is simply due to the lack of certain required packages,
can it just be closed as invalid?
msg56932 - (view) Author: Jean Brouwers (MrJean1) Date: 2007-10-29 21:02
Close it for now.  Once I have the missing packages installed I will try 
again.

My main concern was not the actual test failures, but the  make test *** 
Error 1 ... itself.
msg56934 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2007-10-29 21:27
Closing.

The make fatal error is just what make prints when a command fails with
a nonzero exit code; regrtest.py returns a nonzero exit code to the
shell for just this purpose.
History
Date User Action Args
2022-04-11 14:56:27adminsetgithub: 45698
2007-10-29 21:27:59gvanrossumsetstatus: open -> closed
resolution: not a bug
messages: + msg56934
2007-10-29 21:02:55MrJean1setmessages: + msg56932
2007-10-29 20:56:59gvanrossumsetnosy: + gvanrossum
messages: + msg56931
2007-10-29 18:46:00MrJean1setfiles: + log.verbose
messages: + msg56922
2007-10-29 17:52:55christian.heimessetnosy: + christian.heimes
messages: + msg56918
2007-10-29 17:08:03MrJean1create