mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-23 01:18:52 +08:00
Some of the tests from earlier today had 'int' as the return type when it should have been 'bool'. Fix that. It doesn't change the behavior of any of the tests, but it's more accurate.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@322505 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
#include "test_macros.h"
|
||||
|
||||
#if TEST_STD_VER > 17
|
||||
TEST_CONSTEXPR int test_constexpr() {
|
||||
TEST_CONSTEXPR bool test_constexpr() {
|
||||
int ia[] = {1, 1, 1, 1, 0, 1, 1};
|
||||
int ib[] = {0, 0, 1, 0, 0, 0, 0};
|
||||
return std::is_heap(std::begin(ia), std::end(ia))
|
||||
|
@@ -21,7 +21,7 @@
|
||||
#include "test_macros.h"
|
||||
|
||||
#if TEST_STD_VER > 17
|
||||
TEST_CONSTEXPR int test_constexpr() {
|
||||
TEST_CONSTEXPR bool test_constexpr() {
|
||||
int ia[] = {0, 0, 1, 1, 1};
|
||||
int ib[] = {1, 0, 4, 1, 0};
|
||||
return std::is_heap(std::begin(ia), std::end(ia), std::greater<int>())
|
||||
|
@@ -20,7 +20,7 @@
|
||||
#include "test_macros.h"
|
||||
|
||||
#if TEST_STD_VER > 17
|
||||
TEST_CONSTEXPR int test_constexpr() {
|
||||
TEST_CONSTEXPR bool test_constexpr() {
|
||||
int ia[] = {0, 0, 0, 0, 1, 0};
|
||||
int ib[] = {0, 0, 0, 1, 1, 1};
|
||||
return (std::is_heap_until(std::begin(ia), std::end(ia)) == ia+4)
|
||||
|
@@ -21,7 +21,7 @@
|
||||
#include "test_macros.h"
|
||||
|
||||
#if TEST_STD_VER > 17
|
||||
TEST_CONSTEXPR int test_constexpr() {
|
||||
TEST_CONSTEXPR bool test_constexpr() {
|
||||
int ia[] = {1, 0, 0, 0};
|
||||
int ib[] = {0, 1, 1, 0};
|
||||
return (std::is_heap_until(std::begin(ia), std::end(ia), std::greater<int>()) == ia+1)
|
||||
|
@@ -20,7 +20,7 @@
|
||||
#include "test_iterators.h"
|
||||
|
||||
#if TEST_STD_VER > 17
|
||||
TEST_CONSTEXPR int test_constexpr() {
|
||||
TEST_CONSTEXPR bool test_constexpr() {
|
||||
int ia[] = {0, 0, 1, 1};
|
||||
int ib[] = {1, 1, 0, 0};
|
||||
return std::is_sorted(std::begin(ia), std::end(ia))
|
||||
|
@@ -21,7 +21,7 @@
|
||||
#include "test_iterators.h"
|
||||
|
||||
#if TEST_STD_VER > 17
|
||||
TEST_CONSTEXPR int test_constexpr() {
|
||||
TEST_CONSTEXPR bool test_constexpr() {
|
||||
int ia[] = {1, 1, 0, 0};
|
||||
int ib[] = {0, 0, 1, 1};
|
||||
return std::is_sorted(std::begin(ia), std::end(ia), std::greater<int>())
|
||||
|
@@ -20,7 +20,7 @@
|
||||
#include "test_iterators.h"
|
||||
|
||||
#if TEST_STD_VER > 17
|
||||
TEST_CONSTEXPR int test_constexpr() {
|
||||
TEST_CONSTEXPR bool test_constexpr() {
|
||||
int ia[] = {0, 1, 0};
|
||||
int ib[] = {0, 1, 1};
|
||||
return (std::is_sorted_until(std::begin(ia), std::end(ia)) == ia+2)
|
||||
|
@@ -21,7 +21,7 @@
|
||||
#include "test_iterators.h"
|
||||
|
||||
#if TEST_STD_VER > 17
|
||||
TEST_CONSTEXPR int test_constexpr() {
|
||||
TEST_CONSTEXPR bool test_constexpr() {
|
||||
int ia[] = {1, 0, 1};
|
||||
int ib[] = {1, 1, 0};
|
||||
return (std::is_sorted_until(std::begin(ia), std::end(ia), std::greater<int>()) == ia+2)
|
||||
|
Reference in New Issue
Block a user