// { dg-do run { target c++17 } }
// { dg-require-filesystem-ts "" }
+// { dg-require-target-fs-space "" }
// 30.10.14.3 Permissions [fs.op.space]
// { dg-options "-DUSE_FILESYSTEM_TS -lstdc++fs" }
// { dg-do run { target c++11 } }
// { dg-require-filesystem-ts "" }
+// { dg-require-target-fs-space "" }
// 30.10.14.3 Permissions [fs.op.space]
return
}
+proc dg-require-target-fs-space { args } {
+ if { ![ check_v3_target_fs_space ] } {
+ upvar dg-do-what dg-do-what
+ set dg-do-what [list [lindex ${dg-do-what} 0] "N" "P"]
+ return
+ }
+ return
+}
+
proc add_options_for_no_pch { flags } {
# This forces any generated and possibly included PCH to be invalid.
return "-D__GLIBCXX__=99999999"
return [v3_check_preprocessor_condition fs_symlinks $cond $inc]
}
+# Return 1 if the libstdc++ filesystem implementation of space is not an
+# always-failing dummy.
+proc check_v3_target_fs_space { } {
+ set inc "#include <testsuite_fs.h>"
+ set cond "!defined NO_SPACE"
+ return [v3_check_preprocessor_condition fs_space $cond $inc]
+}
+
# Return 1 if the "cxx11" ABI is in use using the current flags, 0 otherwise.
# Any flags provided by RUNTESTFLAGS or a target board will be used here.
# Flags added in the test by dg-options or dg-add-options will not be used.
#define NO_SYMLINKS
#endif
+#if !defined (_GLIBCXX_HAVE_SYS_STATVFS_H) \
+ && !defined (_GLIBCXX_FILESYSTEM_IS_WINDOWS)
+#define NO_SPACE
+#endif
+
namespace __gnu_test
{
#define PATH_CHK(p1, p2, fn) \