aboutsummaryrefslogtreecommitdiff
path: root/build2/test/rule
diff options
context:
space:
mode:
Diffstat (limited to 'build2/test/rule')
-rw-r--r--build2/test/rule30
1 files changed, 30 insertions, 0 deletions
diff --git a/build2/test/rule b/build2/test/rule
new file mode 100644
index 0000000..1102876
--- /dev/null
+++ b/build2/test/rule
@@ -0,0 +1,30 @@
+// file : build2/test/rule -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BUILD2_TEST_RULE
+#define BUILD2_TEST_RULE
+
+#include <build2/rule>
+#include <build2/operation>
+
+namespace build2
+{
+ namespace test
+ {
+ class rule: public build2::rule
+ {
+ public:
+ virtual match_result
+ match (action, target&, const std::string&) const;
+
+ virtual recipe
+ apply (action, target&, const match_result&) const;
+
+ static target_state
+ perform_test (action, target&);
+ };
+ }
+}
+
+#endif // BUILD2_TEST_RULE