Run [2024-11-21 16:35:57 UTC]: fail
running...
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\long.py", line 5, in __main__
Failed example:
from long_ext import *
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[0]>", line 1, in <module>
from long_ext import *
ImportError: DLL load failed while importing long_ext: The specified module could not be found.
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\long.py", line 6, in __main__
Failed example:
print(new_long())
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[1]>", line 1, in <module>
print(new_long())
^^^^^^^^
NameError: name 'new_long' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\long.py", line 8, in __main__
Failed example:
print(longify(42))
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[2]>", line 1, in <module>
print(longify(42))
^^^^^^^
NameError: name 'longify' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\long.py", line 10, in __main__
Failed example:
print(longify_string('300'))
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[3]>", line 1, in <module>
print(longify_string('300'))
^^^^^^^^^^^^^^
NameError: name 'longify_string' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\long.py", line 12, in __main__
Failed example:
is_long(long(20))
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[4]>", line 1, in <module>
is_long(long(20))
^^^^^^^
NameError: name 'is_long' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\long.py", line 14, in __main__
Failed example:
is_long('20')
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[5]>", line 1, in <module>
is_long('20')
^^^^^^^
NameError: name 'is_long' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\long.py", line 17, in __main__
Failed example:
x = Y(long(4294967295))
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[6]>", line 1, in <module>
x = Y(long(4294967295))
^
NameError: name 'Y' is not defined
**********************************************************************
1 items had failures:
7 of 7 in __main__
***Test Failed*** 7 failures.
EXIT STATUS: 7