summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/unordered/meta
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
commit483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch)
treee5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/unordered/meta
parentInitial commit. (diff)
downloadceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz
ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/unordered/meta')
-rw-r--r--src/boost/libs/unordered/meta/explicit-failures-markup.xml44
-rw-r--r--src/boost/libs/unordered/meta/libraries.json17
2 files changed, 61 insertions, 0 deletions
diff --git a/src/boost/libs/unordered/meta/explicit-failures-markup.xml b/src/boost/libs/unordered/meta/explicit-failures-markup.xml
new file mode 100644
index 00000000..25a19e3d
--- /dev/null
+++ b/src/boost/libs/unordered/meta/explicit-failures-markup.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright 2017-2018 Daniel James
+ Distributed under the Boost Software License, Version 1.0.
+ (See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt)
+-->
+<explicit-failures-markup>
+ <!-- unordered -->
+ <library name="unordered">
+ <mark-expected-failures>
+ <test name="unnecessary_copy_tests"/>
+ <toolset name="borland-*"/>
+ <toolset name="sun-*"/>
+ <note author="Daniel James">
+ This tests whether inserting elements creates as few copies as I think
+ is possible. If this fails it just means that the container might be
+ a little inefficient.
+ </note>
+ </mark-expected-failures>
+
+ <mark-expected-failures>
+ <test name="compile_map_unordered_allocator"/>
+ <toolset name="msvc-7.1"/>
+ <note author="Daniel James">
+ This test fail because it's using unordered's internal
+ allocator traits, which doesn't work on Visual C++ 7.1.
+ It normally uses the one from Boost.Container by default.
+ </note>
+ </mark-expected-failures>
+
+ <mark-expected-failures>
+ <test name="noexcept_tests"/>
+ <toolset name="gcc-4.3c+"/>
+ <note author="Daniel James">
+ boost::is_nothrow_move_constructible and
+ boost::is_nothrow_move_assignable don't seem to work on this
+ compiler. I'd hope that anyone wanting noexcept support would
+ use a more recent compiler anyway.
+ </note>
+ </mark-expected-failures>
+ </library>
+</explicit-failures-markup>
+
diff --git a/src/boost/libs/unordered/meta/libraries.json b/src/boost/libs/unordered/meta/libraries.json
new file mode 100644
index 00000000..1cd5b6ce
--- /dev/null
+++ b/src/boost/libs/unordered/meta/libraries.json
@@ -0,0 +1,17 @@
+{
+ "key": "unordered",
+ "name": "Unordered",
+ "authors": [
+ "Daniel James"
+ ],
+ "maintainers": [
+ "Daniel James <dnljms -at- gmail.com>"
+ ],
+ "description": "Unordered associative containers.",
+ "std": [
+ "tr1"
+ ],
+ "category": [
+ "Containers"
+ ]
+} \ No newline at end of file