069bdd52c1
integers which remain unused and are subsequently leaked, so the test fail when run under valgrind. Unless I'm overlooking a subtle reason why they are needed I think they can be removed, allowing these tests to pass under valgrind. The attached patch removes the variables. If there is a reason for them to exist, I can change this to just delete them at the end of the test. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@161195 91177308-0d34-0410-b5e6-96231b3b80d8
70 lines
2.2 KiB
C++
70 lines
2.2 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// <memory>
|
|
|
|
// shared_ptr
|
|
|
|
// template <class T>
|
|
// bool operator==(const shared_ptr<T>& x, nullptr_t) noexcept;
|
|
// template <class T>
|
|
// bool operator==(nullptr_t, const shared_ptr<T>& y) noexcept;
|
|
// template <class T>
|
|
// bool operator!=(const shared_ptr<T>& x, nullptr_t) noexcept;
|
|
// template <class T>
|
|
// bool operator!=(nullptr_t, const shared_ptr<T>& y) noexcept;
|
|
// template <class T>
|
|
// bool operator<(const shared_ptr<T>& x, nullptr_t) noexcept;
|
|
// template <class T>
|
|
// bool operator<(nullptr_t, const shared_ptr<T>& y) noexcept;
|
|
// template <class T>
|
|
// bool operator<=(const shared_ptr<T>& x, nullptr_t) noexcept;
|
|
// template <class T>
|
|
// bool operator<=(nullptr_t, const shared_ptr<T>& y) noexcept;
|
|
// template <class T>
|
|
// bool operator>(const shared_ptr<T>& x, nullptr_t) noexcept;
|
|
// template <class T>
|
|
// bool operator>(nullptr_t, const shared_ptr<T>& y) noexcept;
|
|
// template <class T>
|
|
// bool operator>=(const shared_ptr<T>& x, nullptr_t) noexcept;
|
|
// template <class T>
|
|
// bool operator>=(nullptr_t, const shared_ptr<T>& y) noexcept;
|
|
|
|
#include <memory>
|
|
#include <cassert>
|
|
|
|
void do_nothing(int*) {}
|
|
|
|
int main()
|
|
{
|
|
const std::shared_ptr<int> p1(new int(1));
|
|
assert(!(p1 == nullptr));
|
|
assert(!(nullptr == p1));
|
|
assert(!(p1 < nullptr));
|
|
assert( (nullptr < p1));
|
|
assert(!(p1 <= nullptr));
|
|
assert( (nullptr <= p1));
|
|
assert( (p1 > nullptr));
|
|
assert(!(nullptr > p1));
|
|
assert( (p1 >= nullptr));
|
|
assert(!(nullptr >= p1));
|
|
|
|
const std::shared_ptr<int> p2;
|
|
assert( (p2 == nullptr));
|
|
assert( (nullptr == p2));
|
|
assert(!(p2 < nullptr));
|
|
assert(!(nullptr < p2));
|
|
assert( (p2 <= nullptr));
|
|
assert( (nullptr <= p2));
|
|
assert(!(p2 > nullptr));
|
|
assert(!(nullptr > p2));
|
|
assert( (p2 >= nullptr));
|
|
assert( (nullptr >= p2));
|
|
}
|