Compile [2024-11-20 01:38:33 UTC]: succeed
"g++-11" -fvisibility-inlines-hidden -std=c++20 -fPIC -pthread -O0 -fno-inline -Wall -fvisibility=hidden -Wextra -DBOOST_ALL_NO_LIB=1 -DBOOST_COBALT_USE_STD_PMR=1 -DBOOST_CONTAINER_DYN_LINK=1 -DBOOST_CONTAINER_NO_LIB=1 -DBOOST_PYTHON_NO_LIB -I".." -I"/mnt/fs1/teeks99-06/run/boost_root/libs/assert/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/bind/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/container/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/container_hash/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/conversion/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/core/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/describe/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/detail/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/function/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/function_types/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/fusion/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/integer/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/intrusive/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/iterator/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/lexical_cast/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/move/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/mp11/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/optional/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/python/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/smart_ptr/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/throw_exception/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/tuple/include" -I"/mnt/fs1/teeks99-06/run/boost_root/libs/type_traits/include" -I"/usr/include/python2.7" -c -o "/mnt/fs1/teeks99-06/run/results/boost/bin.v2/libs/python/test/enum.test/gcc-11~c++20/debug/arm_64/debug-symbols-off/python-2.7/threading-multi/visibility-hidden/enum_ext.o" "../libs/python/test/enum_ext.cpp"
In file included from ../boost/python/detail/is_xxx.hpp:8,
from ../boost/python/detail/is_auto_ptr.hpp:9,
from ../boost/python/detail/copy_ctor_mutates_rhs.hpp:8,
from ../boost/python/detail/value_arg.hpp:7,
from ../boost/python/object/forward.hpp:10,
from ../boost/python/object/pointer_holder.hpp:16,
from ../boost/python/to_python_indirect.hpp:10,
from ../boost/python/converter/arg_to_python.hpp:10,
from ../boost/python/call.hpp:15,
from ../boost/python/object_core.hpp:14,
from ../boost/python/object/enum_base.hpp:8,
from ../boost/python/enum.hpp:10,
from ../libs/python/test/enum_ext.cpp:5:
../boost/python/detail/is_auto_ptr.hpp:17:40: warning: ???template<class> class std::auto_ptr??? is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
17 | BOOST_PYTHON_IS_XXX_DEF(auto_ptr, std::auto_ptr, 1)
| ^~~~~~~~
../boost/detail/is_xxx.hpp:20:4: note: in definition of macro ???BOOST_DETAIL_IS_XXX_DEF???
20 | qualified_name< BOOST_PP_ENUM_PARAMS_Z(1, nargs, T) > \
| ^~~~~~~~~~~~~~
../boost/python/detail/is_auto_ptr.hpp:17:1: note: in expansion of macro ???BOOST_PYTHON_IS_XXX_DEF???
17 | BOOST_PYTHON_IS_XXX_DEF(auto_ptr, std::auto_ptr, 1)
| ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/c++/11/memory:76,
from ../boost/config/no_tr1/memory.hpp:21,
from ../boost/get_pointer.hpp:14,
from ../boost/python/object/pointer_holder.hpp:11,
from ../boost/python/to_python_indirect.hpp:10,
from ../boost/python/converter/arg_to_python.hpp:10,
from ../boost/python/call.hpp:15,
from ../boost/python/object_core.hpp:14,
from ../boost/python/object/enum_base.hpp:8,
from ../boost/python/enum.hpp:10,
from ../libs/python/test/enum_ext.cpp:5:
/usr/include/c++/11/bits/unique_ptr.h:57:28: note: declared here
57 | template<typename> class auto_ptr;
| ^~~~~~~~
Run [2024-11-20 01:38:33 UTC]: fail
running...
**********************************************************************
File "../libs/python/test/test_enum.py", line 5, in __main__
Failed example:
from enum_ext import *
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[0]>", line 1, in <module>
from enum_ext import *
ImportError: /mnt/fs1/teeks99-06/run/results/boost/bin.v2/libs/python/build/gcc-11~c++20/debug/arm_64/debug-symbols-off/python-2.7/threading-multi/visibility-hidden/libboost_python27.so.1.87.0: undefined symbol: PyUnicodeUCS4_FromEncodedObject
**********************************************************************
File "../libs/python/test/test_enum.py", line 7, in __main__
Failed example:
identity(color.red) # in case of duplicated enums it always take the last enum
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[1]>", line 1, in <module>
identity(color.red) # in case of duplicated enums it always take the last enum
NameError: name 'identity' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 10, in __main__
Failed example:
identity(color.green)
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[2]>", line 1, in <module>
identity(color.green)
NameError: name 'identity' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 13, in __main__
Failed example:
identity(color.blue)
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[3]>", line 1, in <module>
identity(color.blue)
NameError: name 'identity' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 16, in __main__
Failed example:
identity(color(1)) # in case of duplicated enums it always take the last enum
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[4]>", line 1, in <module>
identity(color(1)) # in case of duplicated enums it always take the last enum
NameError: name 'identity' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 19, in __main__
Failed example:
identity(color(2))
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[5]>", line 1, in <module>
identity(color(2))
NameError: name 'identity' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 22, in __main__
Failed example:
identity(color(3))
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[6]>", line 1, in <module>
identity(color(3))
NameError: name 'identity' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 25, in __main__
Failed example:
identity(color(4))
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[7]>", line 1, in <module>
identity(color(4))
NameError: name 'identity' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 30, in __main__
Failed example:
identity(red)
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[8]>", line 1, in <module>
identity(red)
NameError: name 'identity' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 33, in __main__
Failed example:
identity(green)
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[9]>", line 1, in <module>
identity(green)
NameError: name 'identity' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 36, in __main__
Failed example:
identity(blue)
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[10]>", line 1, in <module>
identity(blue)
NameError: name 'identity' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 39, in __main__
Failed example:
try: identity(1)
except TypeError: pass
else: print('expected a TypeError')
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[11]>", line 1, in <module>
try: identity(1)
NameError: name 'identity' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 43, in __main__
Failed example:
c = colorized()
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[12]>", line 1, in <module>
c = colorized()
NameError: name 'colorized' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 44, in __main__
Failed example:
c.x
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[13]>", line 1, in <module>
c.x
NameError: name 'c' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 46, in __main__
Failed example:
c.x = green
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[14]>", line 1, in <module>
c.x = green
NameError: name 'green' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 47, in __main__
Failed example:
c.x
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[15]>", line 1, in <module>
c.x
NameError: name 'c' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 49, in __main__
Failed example:
red == blood
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[16]>", line 1, in <module>
red == blood
NameError: name 'red' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 51, in __main__
Failed example:
red == green
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[17]>", line 1, in <module>
red == green
NameError: name 'red' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 53, in __main__
Failed example:
hash(red) == hash(blood)
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[18]>", line 1, in <module>
hash(red) == hash(blood)
NameError: name 'red' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 55, in __main__
Failed example:
hash(red) == hash(green)
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[19]>", line 1, in <module>
hash(red) == hash(green)
NameError: name 'red' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 59, in __main__
Failed example:
p = pickle.dumps(color.green, pickle.HIGHEST_PROTOCOL)
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[21]>", line 1, in <module>
p = pickle.dumps(color.green, pickle.HIGHEST_PROTOCOL)
NameError: name 'color' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 60, in __main__
Failed example:
l = pickle.loads(p)
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[22]>", line 1, in <module>
l = pickle.loads(p)
NameError: name 'p' is not defined
**********************************************************************
File "../libs/python/test/test_enum.py", line 61, in __main__
Failed example:
identity(l)
Exception raised:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest __main__[23]>", line 1, in <module>
identity(l)
NameError: name 'identity' is not defined
**********************************************************************
1 items had failures:
23 of 24 in __main__
***Test Failed*** 23 failures.
EXIT STATUS: 23