Commit 87e4fbdd by Jonathan Wakely Committed by Jonathan Wakely

Make test for Filesystem TS actually use the Filesystem TS

This test was copied from 27_io/filesystem/path/query/is_absolute.cc but
should have been modified to test the path type from the TS instead of
std::filesystem::path.

	* testsuite/experimental/filesystem/path/query/is_absolute.cc: Fix
	test to use TS, not C++17.

From-SVN: r266957
parent e5840e75
2018-12-10 Jonathan Wakely <jwakely@redhat.com>
* testsuite/experimental/filesystem/path/query/is_absolute.cc: Fix
test to use TS, not C++17.
2018-12-06 Iain Sandoe <iain@sandoe.co.uk>
* scripts/make_exports.pl (check names): Don’t try to export
......
// { dg-options "-std=gnu++17 -lstdc++fs" }
// { dg-do run { target c++17 } }
// { dg-options "-DUSE_FILESYSTEM_TS -lstdc++fs" }
// { dg-do run { target c++11 } }
// { dg-require-filesystem-ts "" }
// Copyright (C) 2018 Free Software Foundation, Inc.
......@@ -21,15 +21,15 @@
// 8.4.9 path decomposition [path.decompose]
#include <filesystem>
#include <experimental/filesystem>
#include <testsuite_hooks.h>
using std::filesystem::path;
using std::experimental::filesystem::path;
void
test01()
{
#ifdef _GLIBCXX_FILESYSTEM_IS_WINDOWS
#ifdef _GLIBCXX_FILESYSTEM_IS_WINDOWS
const bool is_posix = false;
#else
const bool is_posix = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment