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: test_run failing
Type: behavior Stage: resolved
Components: Distutils2 Versions: Python 2.6
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: tarek Nosy List: aconrad, eric.araujo, tarek, zubin71
Priority: normal Keywords:

Created on 2010-03-31 14:11 by zubin71, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg102011 - (view) Author: Zubin Mithra (zubin71) Date: 2010-03-31 14:11
======================================================================
FAIL: test_run (distutils2.tests.test_build_clib.BuildCLibTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/media/disk/myWorks/working/distutils2/src/distutils2/tests/test_build_clib.py", line 137, in test_run
    self.assertTrue('libfoo.a' in os.listdir(build_temp))
AssertionError: False is not True

----------------------------------------------------------------------
Ran 135 tests in 1.004s

FAILED (failures=1, skipped=4)
Traceback (most recent call last):
  File "runtests.py", line 18, in <module>
    test_main()
  File "runtests.py", line 12, in test_main
    run_unittest(distutils2.tests.test_suite())
  File "/media/disk/myWorks/working/distutils2/src/distutils2/tests/__init__.py", line 86, in run_unittest
    _run_suite(suite)
  File "/media/disk/myWorks/working/distutils2/src/distutils2/tests/__init__.py", line 66, in _run_suite
    raise TestFailed(err)
distutils2.tests.TestFailed: Traceback (most recent call last):
  File "/media/disk/myWorks/working/distutils2/src/distutils2/tests/test_build_clib.py", line 137, in test_run
    self.assertTrue('libfoo.a' in os.listdir(build_temp))
AssertionError: False is not True
msg103729 - (view) Author: Alexandre Conrad (aconrad) Date: 2010-04-20 15:52
worksforme:

test_run (distutils2.tests.test_build_clib.BuildCLibTestCase) ... ok

Python 2.6.2 on Ubuntu 9.04
msg117692 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-09-30 02:03
I don’t get this failure.
History
Date User Action Args
2022-04-11 14:56:59adminsetgithub: 52521
2010-09-30 02:03:39eric.araujosetstatus: open -> closed

nosy: + eric.araujo
messages: + msg117692

resolution: out of date
stage: resolved
2010-04-20 15:52:26aconradsetnosy: + aconrad
messages: + msg103729
2010-03-31 14:11:45zubin71create