<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in push_front_rvalue.pass.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>10ec9276d40024c23a481e6671dad1521151dd85 - [2a/3][ASan][libcxx] std::deque annotations</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#10ec9276d40024c23a481e6671dad1521151dd85</link>
        <description>[2a/3][ASan][libcxx] std::deque annotationsThis revision is a part of a series of patches extending AddressSanitizer C++ container overflow detection capabilities by adding annotations, similar to those existing in `std::vector`, to `std::string` and `std::deque` collections. These changes allow ASan to detect cases when the instrumented program accesses memory which is internally allocated by the collection but is still not in-use (accesses before or after the stored elements for `std::deque`, or between the size and capacity bounds for `std::string`).The motivation for the research and those changes was a bug, found by Trail of Bits, in a real code where an out-of-bounds read could happen as two strings were compared via a std::equals function that took `iter1_begin`, `iter1_end`, `iter2_begin` iterators (with a custom comparison function). When object `iter1` was longer than `iter2`, read out-of-bounds on `iter2` could happen. Container sanitization would detect it.This revision introduces annotations for `std::deque`. Each chunk of the container can now be annotated using the `__sanitizer_annotate_double_ended_contiguous_container` function, which was added in the rG1c5ad6d2c01294a0decde43a88e9c27d7437d157. Any attempt to access poisoned memory will trigger an ASan error. Although false negatives are rare, they are possible due to limitations in the ASan API, where a few (usually up to 7) bytes before the container may remain unpoisoned. There are no false positives in the same way as with `std::vector` annotations.This patch only supports objects (deques) that use the standard allocator. However, it can be easily extended to support all allocators, as suggested in the D146815 revision.Furthermore, the patch includes the addition of the `is_double_ended_contiguous_container_asan_correct` function to `libcxx/test/support/asan_testing.h`. This function can be used to verify whether a `std::deque` object has been correctly annotated.Finally, the patch extends the unit tests to verify ASan annotations (added LIBCPP_ASSERTs).If a program is compiled without ASan, all helper functions will be no-ops. In binaries with ASan, there is a negligible performance impact since the code from the change is only executed when the deque container changes in size and it&#8217;s proportional to the change. It is important to note that regardless of whether or not these changes are in use, every access to the container&apos;s memory is instrumented.If you have any questions, please email:- advenam.tacet@trailofbits.com- disconnect3d@trailofbits.comReviewed By: #libc, philnikDifferential Revision: https://reviews.llvm.org/D132092

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Thu, 01 Jun 2023 05:13:24 +0000</pubDate>
        <dc:creator>Advenam Tacet &lt;advenam.tacet@trailofbits.com&gt;</dc:creator>
    </item>
<item>
        <title>1ab4438920b5ed9dc848b9a6f84c254f07a69f15 - Revert &quot;[2a/3][ASan][libcxx] std::deque annotations&quot;</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#1ab4438920b5ed9dc848b9a6f84c254f07a69f15</link>
        <description>Revert &quot;[2a/3][ASan][libcxx] std::deque annotations&quot;This reverts commit 605b9c76e093f6ed713b3fea47cb9726b346edeb.

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Wed, 31 May 2023 20:31:49 +0000</pubDate>
        <dc:creator>Vitaly Buka &lt;vitalybuka@google.com&gt;</dc:creator>
    </item>
<item>
        <title>605b9c76e093f6ed713b3fea47cb9726b346edeb - [2a/3][ASan][libcxx] std::deque annotations</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#605b9c76e093f6ed713b3fea47cb9726b346edeb</link>
        <description>[2a/3][ASan][libcxx] std::deque annotationsThis revision is a part of a series of patches extending AddressSanitizer C++ container overflow detection capabilities by adding annotations, similar to those existing in std::vector, to std::string and `std::deque` collections. These changes allow ASan to detect cases when the instrumented program accesses memory which is internally allocated by the collection but is still not in-use (accesses before or after the stored elements for `std::deque`, or between the size and capacity bounds for `std::string`).The motivation for the research and those changes was a bug, found by Trail of Bits, in a real code where an out-of-bounds read could happen as two strings were compared via a std::equals function that took `iter1_begin`, `iter1_end`, `iter2_begin` iterators (with a custom comparison function). When object `iter1` was longer than `iter2`, read out-of-bounds on `iter2` could happen. Container sanitization would detect it.This revision introduces annotations for `std::deque`. Each chunk of the container can now be annotated using the `__sanitizer_annotate_double_ended_contiguous_container` function, which was added in the rG1c5ad6d2c01294a0decde43a88e9c27d7437d157. Any attempt to access poisoned memory will trigger an ASan error. Although false negatives are rare, they are possible due to limitations in the ASan API, where a few (usually up to 7) bytes before the container may remain unpoisoned. There are no false positives in the same way as with `std::vector` annotations.This patch only supports objects (deques) that use the standard allocator. However, it can be easily extended to support all allocators, as suggested in the D146815 revision.Furthermore, the patch includes the addition of the `is_double_ended_contiguous_container_asan_correct` function to libcxx/test/support/asan_testing.h. This function can be used to verify whether a `std::deque` object has been correctly annotated.Finally, the patch extends the unit tests to verify ASan annotations (added LIBCPP_ASSERTs).If a program is compiled without ASan, all helper functions will be no-ops. In binaries with ASan, there is a negligible performance impact since the code from the change is only executed when the deque container changes in size and it&#8217;s proportional to the change. It is important to note that regardless of whether or not these changes are in use, every access to the container&apos;s memory is instrumented.Reviewed By: #libc, philnikSpies: vitalybuka, hans, mikhail.ramalho, Enna1, #sanitizers, philnik, libcxx-commitsDifferential Revision: https://reviews.llvm.org/D132092

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Wed, 24 May 2023 21:26:14 +0000</pubDate>
        <dc:creator>Advenam Tacet &lt;advenam.tacet@trailofbits.com&gt;</dc:creator>
    </item>
<item>
        <title>bb13ed231a20e79d7ccd1571015dc78efdef3a46 - Revert &quot;[2a/3][ASan][libcxx] std::deque annotations&quot;</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#bb13ed231a20e79d7ccd1571015dc78efdef3a46</link>
        <description>Revert &quot;[2a/3][ASan][libcxx] std::deque annotations&quot;https://lab.llvm.org/buildbot/#/builders/168/builds/13310https://lab.llvm.org/buildbot/#/builders/239/builds/2107This reverts commit 9a5f283139201ba5878780c06c97e4ad1f5eac39.

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Sat, 06 May 2023 07:21:17 +0000</pubDate>
        <dc:creator>Vitaly Buka &lt;vitalybuka@google.com&gt;</dc:creator>
    </item>
<item>
        <title>9a5f283139201ba5878780c06c97e4ad1f5eac39 - [2a/3][ASan][libcxx] std::deque annotations</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#9a5f283139201ba5878780c06c97e4ad1f5eac39</link>
        <description>[2a/3][ASan][libcxx] std::deque annotationsThis revision is a part of a series of patches extending AddressSanitizer C++ container overflow detection capabilities by adding annotations, similar to those existing in std::vector, to std::string and `std::deque` collections. These changes allow ASan to detect cases when the instrumented program accesses memory which is internally allocated by the collection but is still not in-use (accesses before or after the stored elements for `std::deque`, or between the size and capacity bounds for `std::string`).The motivation for the research and those changes was a bug, found by Trail of Bits, in a real code where an out-of-bounds read could happen as two strings were compared via a std::equals function that took `iter1_begin`, `iter1_end`, `iter2_begin` iterators (with a custom comparison function). When object `iter1` was longer than `iter2`, read out-of-bounds on `iter2` could happen. Container sanitization would detect it.This revision introduces annotations for `std::deque`. Each chunk of the container can now be annotated using the `__sanitizer_annotate_double_ended_contiguous_container` function, which was added in the rG1c5ad6d2c01294a0decde43a88e9c27d7437d157. Any attempt to access poisoned memory will trigger an ASan error. Although false negatives are rare, they are possible due to limitations in the ASan API, where a few (usually up to 7) bytes before the container may remain unpoisoned. There are no false positives in the same way as with `std::vector` annotations.This patch only supports objects (deques) that use the standard allocator. However, it can be easily extended to support all allocators, as suggested in the D146815 revision.Furthermore, the patch includes the addition of the `is_double_ended_contiguous_container_asan_correct` function to libcxx/test/support/asan_testing.h. This function can be used to verify whether a `std::deque` object has been correctly annotated.Finally, the patch extends the unit tests to verify ASan annotations (added LIBCPP_ASSERTs).If a program is compiled without ASan, all helper functions will be no-ops. In binaries with ASan, there is a negligible performance impact since the code from the change is only executed when the deque container changes in size and it&#8217;s proportional to the change. It is important to note that regardless of whether or not these changes are in use, every access to the container&apos;s memory is instrumented.Reviewed By: #libc, philnikSpies: mikhail.ramalho, Enna1, #sanitizers, philnik, libcxx-commitsDifferential Revision: https://reviews.llvm.org/D132092

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Fri, 05 May 2023 16:09:34 +0000</pubDate>
        <dc:creator>Advenam Tacet &lt;advenam.tacet@trailofbits.com&gt;</dc:creator>
    </item>
<item>
        <title>f33d7493a5b175844d275c4fb452ba0833df71b4 - [libc++] [test] Qualify `distance` as `std::distance` in a lot of tests. NFCI.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#f33d7493a5b175844d275c4fb452ba0833df71b4</link>
        <description>[libc++] [test] Qualify `distance` as `std::distance` in a lot of tests. NFCI.We shouldn&apos;t be calling `distance` via ADL -- and neither should anybodyin the wild be calling it via ADL, so it&apos;s not like we need to testthis ADL ability of `distance` in particular.Differential Revision: https://reviews.llvm.org/D119685

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Sun, 13 Feb 2022 19:46:29 +0000</pubDate>
        <dc:creator>Arthur O&apos;Dwyer &lt;arthur.j.odwyer@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>16bf43398a62604e6a4146deeb1c43dfa1e78e04 - [libc++] Comma-operator-proof a lot of algorithm/container code.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#16bf43398a62604e6a4146deeb1c43dfa1e78e04</link>
        <description>[libc++] Comma-operator-proof a lot of algorithm/container code.Detected by evil-izing the widely used `MoveOnly` testing type.I had to patch some tests that were themselves using its comma operator,but I think that&apos;s a worthwhile cost in order to catch more placesin our headers that needed comma-proofing.The trick here is that even `++ptr, SomeClass()` can find a comma operatorby ADL, if `ptr` is of type `Evil*`. (A comma between two operandsof non-class-or-enum type is always treated as the built-incomma, without ADL. But if either operand is class-or-enum, thenADL happens for _both_ operands&apos; types.)Differential Revision: https://reviews.llvm.org/D109414

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Wed, 08 Sep 2021 01:35:37 +0000</pubDate>
        <dc:creator>Arthur O&apos;Dwyer &lt;arthur.j.odwyer@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>31cbe0f240f660f15602c96b787c58a26f17e179 - [libc++] Remove the c++98 Lit feature from the test suite</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#31cbe0f240f660f15602c96b787c58a26f17e179</link>
        <description>[libc++] Remove the c++98 Lit feature from the test suiteC++98 and C++03 are effectively aliases as far as Clang is concerned.As such, allowing both std=c++98 and std=c++03 as Lit parameters isjust slightly confusing, but provides no value. It&apos;s similar to allowingboth std=c++17 and std=c++1z, which we don&apos;t do.This was discovered because we had an internal bot that ran the testsuite under both c++98 AND c++03 -- one of which is redundant.Differential Revision: https://reviews.llvm.org/D80926

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Mon, 01 Jun 2020 14:38:23 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>7fc6a55688c816f5fc1a5481ae7af25be7500356 - Add include for &apos;test_macros.h&apos; to all the tests that were missing them. Thanks to Zoe for the (big, but simple) patch. NFC intended.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#7fc6a55688c816f5fc1a5481ae7af25be7500356</link>
        <description>Add include for &apos;test_macros.h&apos; to all the tests that were missing them. Thanks to Zoe for the (big, but simple) patch. NFC intended.llvm-svn: 362252

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Fri, 31 May 2019 18:35:30 +0000</pubDate>
        <dc:creator>Marshall Clow &lt;mclow.lists@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>2df59c50688c122bbcae7467d3eaf862c3ea3088 - Support tests in freestanding</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#2df59c50688c122bbcae7467d3eaf862c3ea3088</link>
        <description>Support tests in freestandingSummary:Freestanding is *weird*. The standard allows it to differ in a bunch of oddmanners from regular C++, and the committee would like to improve thatsituation. I&apos;d like to make libc++ behave better with what freestanding shouldbe, so that it can be a tool we use in improving the standard. To do that weneed to try stuff out, both with &quot;freestanding the language mode&quot; and&quot;freestanding the library subset&quot;.Let&apos;s start with the super basic: run the libc++ tests in freestanding, usingclang as the compiler, and see what works. The easiest hack to do this:In utils/libcxx/test/config.py add:  self.cxx.compile_flags += [&apos;-ffreestanding&apos;]Run the tests and they all fail.Why? Because in freestanding `main` isn&apos;t special. This &quot;not special&quot; propertyhas two effects: main doesn&apos;t get mangled, and main isn&apos;t allowed to omit its`return` statement. The first means main gets mangled and the linker can&apos;tcreate a valid executable for us to test. The second means we spew out warnings(ew) and the compiler doesn&apos;t insert the `return` we omitted, and main justfalls of the end and does whatever undefined behavior (if you&apos;re luck, ud2leading to non-zero return code).Let&apos;s start my work with the basics. This patch changes all libc++ tests todeclare `main` as `int main(int, char**` so it mangles consistently (enabling usto declare another `extern &quot;C&quot;` main for freestanding which calls the mangledone), and adds `return 0;` to all places where it was missing. This touches 6124files, and I apologize.The former was done with The Magic Of Sed.The later was done with a (not quite correct but decent) clang tool:  https://gist.github.com/jfbastien/793819ff360baa845483dde81170feedThis works for most tests, though I did have to adjust a few places when e.g.the test runs with `-x c`, macros are used for main (such as for the filesystemtests), etc.Once this is in we can create a freestanding bot which will prevent furtherregressions. After that, we can start the real work of supporting C++freestanding fairly well in libc++.&lt;rdar://problem/47754795&gt;Reviewers: ldionne, mclow.lists, EricWFSubscribers: christof, jkorous, dexonsmith, arphaman, miyuki, libcxx-commitsDifferential Revision: https://reviews.llvm.org/D57624llvm-svn: 353086

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Mon, 04 Feb 2019 20:31:13 +0000</pubDate>
        <dc:creator>JF Bastien &lt;jfbastien@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>57b08b0944046a6a57ee9b7b479181f548a5b9b4 - Update more file headers across all of the LLVM projects in the monorepo</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#57b08b0944046a6a57ee9b7b479181f548a5b9b4</link>
        <description>Update more file headers across all of the LLVM projects in the monorepoto reflect the new license. These used slightly different spellings thatdefeated my regular expressions.We understand that people may be surprised that we&apos;re moving the headerentirely to discuss the new license. We checked this carefully with theFoundation&apos;s lawyer and we believe this is the correct approach.Essentially, all code in the project is now made available by the LLVMproject under our new license, so you will see that the license headersinclude that license only. Some of our contributors have contributedcode under our old license, and accordingly, we have retained a copy ofour old license notice in the top-level files in each project andrepository.llvm-svn: 351648

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Sat, 19 Jan 2019 10:56:40 +0000</pubDate>
        <dc:creator>Chandler Carruth &lt;chandlerc@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a9d646a08ba9b3fcc8d310584665c259a51f88d9 - Replace _LIBCPP_HAS_NO_&lt;C++03 feature&gt; with _LIBCPP_CXX03_LANG in deque</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#a9d646a08ba9b3fcc8d310584665c259a51f88d9</link>
        <description>Replace _LIBCPP_HAS_NO_&lt;C++03 feature&gt; with _LIBCPP_CXX03_LANG in dequellvm-svn: 300413

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Sun, 16 Apr 2017 03:17:01 +0000</pubDate>
        <dc:creator>Eric Fiselier &lt;eric@efcs.ca&gt;</dc:creator>
    </item>
<item>
        <title>fbfb2ab63e94f1b0c248cd810ae3fb35889d99b6 - [libcxx] [test] D27021: Fix MSVC warning C4389 &quot;signed/unsigned mismatch&quot;, part 8/12.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#fbfb2ab63e94f1b0c248cd810ae3fb35889d99b6</link>
        <description>[libcxx] [test] D27021: Fix MSVC warning C4389 &quot;signed/unsigned mismatch&quot;, part 8/12.Add static_cast&lt;std::size_t&gt; when comparing distance() to size().These replacements were performed programmatically with regex_replace():const vector&lt;pair&lt;regex, string&gt;&gt; reg_fmt = {    { regex(R&quot;(assert\((\w+)\.size\(\) == std::distance\((\w+, \w+)\)\))&quot;),        &quot;assert($1.size() == static_cast&lt;std::size_t&gt;(std::distance($2)))&quot; },    { regex(R&quot;(assert\(distance\((\w+\.begin\(\), \w+\.end\(\))\) == (\w+)\.size\(\)\))&quot;),        &quot;assert(static_cast&lt;std::size_t&gt;(distance($1)) == $2.size())&quot; },    { regex(R&quot;(assert\(std::distance\((\w+\.\w*begin\(\), \w+\.\w*end\(\))\) == (\w+)\.size\(\)\))&quot;),        &quot;assert(static_cast&lt;std::size_t&gt;(std::distance($1)) == $2.size())&quot; },};Also, include &lt;cstddef&gt; when it wasn&apos;t already being included.llvm-svn: 288745

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Tue, 06 Dec 2016 01:12:34 +0000</pubDate>
        <dc:creator>Stephan T. Lavavej &lt;stl@exchange.microsoft.com&gt;</dc:creator>
    </item>
<item>
        <title>a11d322f0d5530a4da67aa77ad1137c63f874288 - [libcxx] [test] D27014: Fix MSVC warning C4018 &quot;signed/unsigned mismatch&quot;, part 2/12.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#a11d322f0d5530a4da67aa77ad1137c63f874288</link>
        <description>[libcxx] [test] D27014: Fix MSVC warning C4018 &quot;signed/unsigned mismatch&quot;, part 2/12.Add static_cast&lt;std::size_t&gt; when comparing int to std::size_t.Also, include &lt;cstddef&gt; when it wasn&apos;t already being included.llvm-svn: 287822

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Wed, 23 Nov 2016 22:01:58 +0000</pubDate>
        <dc:creator>Stephan T. Lavavej &lt;stl@exchange.microsoft.com&gt;</dc:creator>
    </item>
<item>
        <title>f2f2a6395fad5bd49a573fdf2b20072735d496f7 - Replace __cplusplus comparisons and dialect __has_feature checks with TEST_STD_VER.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#f2f2a6395fad5bd49a573fdf2b20072735d496f7</link>
        <description>Replace __cplusplus comparisons and dialect __has_feature checks with TEST_STD_VER.This is a huge cleanup that helps make the libc++ test suite more portable.Patch from STL@microsoft.com. Thanks STL!llvm-svn: 272716

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Tue, 14 Jun 2016 21:31:42 +0000</pubDate>
        <dc:creator>Eric Fiselier &lt;eric@efcs.ca&gt;</dc:creator>
    </item>
<item>
        <title>861d0ea2aa3dbb251f3ee0bcc811af5cd629fba6 - Fix more issues exposed by -pedantic-errors in c++03 mode</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#861d0ea2aa3dbb251f3ee0bcc811af5cd629fba6</link>
        <description>Fix more issues exposed by -pedantic-errors in c++03 modellvm-svn: 228711

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Tue, 10 Feb 2015 17:20:18 +0000</pubDate>
        <dc:creator>Eric Fiselier &lt;eric@efcs.ca&gt;</dc:creator>
    </item>
<item>
        <title>949389c395edffc54f3551cbb595065a6f4e6a78 - We had two identical files named &apos;MoveOnly.h&apos; in the test suite. Move one to support/, remove the other, and update all the tests that included them. No functionality change.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#949389c395edffc54f3551cbb595065a6f4e6a78</link>
        <description>We had two identical files named &apos;MoveOnly.h&apos; in the test suite. Move one to support/, remove the other, and update all the tests that included them. No functionality change.llvm-svn: 227370

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Wed, 28 Jan 2015 21:22:53 +0000</pubDate>
        <dc:creator>Marshall Clow &lt;mclow.lists@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>5a83710e371fe68a06e6e3876c6a2c8b820a8976 - Move test into test/std subdirectory.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp#5a83710e371fe68a06e6e3876c6a2c8b820a8976</link>
        <description>Move test into test/std subdirectory.llvm-svn: 224658

            List of files:
            /llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp</description>
        <pubDate>Sat, 20 Dec 2014 01:40:03 +0000</pubDate>
        <dc:creator>Eric Fiselier &lt;eric@efcs.ca&gt;</dc:creator>
    </item>
</channel>
</rss>
