aboutsummaryrefslogtreecommitdiff
path: root/build2/test/operation.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/test/operation.cxx')
-rw-r--r--build2/test/operation.cxx17
1 files changed, 17 insertions, 0 deletions
diff --git a/build2/test/operation.cxx b/build2/test/operation.cxx
index e4591e4..7c968ff 100644
--- a/build2/test/operation.cxx
+++ b/build2/test/operation.cxx
@@ -24,6 +24,7 @@ namespace build2
const operation_info op_test {
test_id,
+ 0,
"test",
"test",
"testing",
@@ -34,5 +35,21 @@ namespace build2
&test_pre,
nullptr
};
+
+ // Also the explicit update-for-test operation alias.
+ //
+ const operation_info op_update_for_test {
+ update_id, // Note: not update_for_test_id.
+ test_id,
+ op_update.name,
+ op_update.name_do,
+ op_update.name_doing,
+ op_update.name_did,
+ op_update.name_done,
+ op_update.mode,
+ op_update.concurrency,
+ op_update.pre,
+ op_update.post
+ };
}
}