explicit-failures-markup.xml 1.0 KB

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <explicit-failures-markup>
  3. <!-- fusion -->
  4. <library name="fusion">
  5. <mark-expected-failures>
  6. <test name="define_struct_inline_move"/>
  7. <test name="define_tpl_struct_inline_move"/>
  8. <toolset name="msvc-10.0"/>
  9. <toolset name="msvc-11.0"/>
  10. <toolset name="msvc-12.0"/>
  11. <toolset name="qcc-4.4.2_x86"/>
  12. <toolset name="gcc-4.4~c++0x*"/>
  13. <toolset name="gcc-4.4~gnu0x*"/>
  14. <note author="Kohei Takahashi">
  15. The compiler doesn't generate defaulted move ctor/assgin thus
  16. perform copy construction/assginment. Even though such case,
  17. the `inline` versions don't force generating move ctor/assign
  18. to preserve trivial requirements. Since that is not documented
  19. behaviour, it might be changed in future release.
  20. </note>
  21. </mark-expected-failures>
  22. </library>
  23. </explicit-failures-markup>