libstdc++: Add tests for std::invoke feature test macro
authorJonathan Wakely <jwakely@redhat.com>
Wed, 5 May 2021 11:41:14 +0000 (12:41 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Wed, 5 May 2021 11:50:45 +0000 (12:50 +0100)
libstdc++-v3/ChangeLog:

* testsuite/20_util/function_objects/invoke/3.cc: Check feature
test macro.
* testsuite/20_util/function_objects/invoke/version.cc: New test.

libstdc++-v3/testsuite/20_util/function_objects/invoke/3.cc
libstdc++-v3/testsuite/20_util/function_objects/invoke/version.cc [new file with mode: 0644]

index 5ffc5de..40e068e 100644 (file)
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <functional>
 
+#ifndef __cpp_lib_invoke
+# error Feature-test macro for invoke is missing in <functional>
+#elif __cpp_lib_invoke < 201411L
+# error Feature-test macro for invoke has the wrong value in <functional>
+#endif
+
 struct abstract {
   virtual ~abstract() = 0;
   void operator()() noexcept;
diff --git a/libstdc++-v3/testsuite/20_util/function_objects/invoke/version.cc b/libstdc++-v3/testsuite/20_util/function_objects/invoke/version.cc
new file mode 100644 (file)
index 0000000..cf1a46a
--- /dev/null
@@ -0,0 +1,9 @@
+// { dg-do compile { target c++17 } }
+
+#include <version>
+
+#ifndef __cpp_lib_invoke
+# error Feature-test macro for invoke is missing in <version>
+#elif __cpp_lib_invoke < 201411L
+# error Feature-test macro for invoke has the wrong value in <version>
+#endif