blob: 2729e59029bc3a070aa2cad801a6a8b47acee2bc [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// UNSUPPORTED: windows
// MODULES_DEFINES: _LIBCPP_DEBUG=0
// <filesystem>
// class path
#define _LIBCPP_DEBUG 0
#include "filesystem_include.h"
#include <iterator>
#include <type_traits>
#include <cassert>
#include "test_macros.h"
#include "filesystem_test_helper.h"
#include "debug_mode_helper.h"
int main(int, char**) {
using namespace fs;
// Test incrementing/decrementing a singular iterator
{
path::iterator singular;
EXPECT_DEATH( ++singular );
EXPECT_DEATH( --singular );
}
// Test decrementing the begin iterator
{
path p("foo/bar");
auto it = p.begin();
++it;
++it;
EXPECT_DEATH( ++it );
}
// Test incrementing the end iterator
{
path p("foo/bar");
auto it = p.end();
EXPECT_DEATH( ++it );
--it;
--it;
EXPECT_DEATH( --it );
}
return 0;
}