aboutsummaryrefslogtreecommitdiff
path: root/bbot
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-05-29 13:11:47 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-05-29 13:11:47 +0300
commit8cd5bfaa194da46aa7f4d2f8477d8691431bdb75 (patch)
tree2173026c579479f49106deb939fdb8912d9b2611 /bbot
parent82f975e377bd9d148a6a7f4b508f29d609ff3524 (diff)
Rename b.test-installed* worker step ids to b.test-installed*
Diffstat (limited to 'bbot')
-rw-r--r--bbot/worker/worker.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx
index f0a366c..5fff9bc 100644
--- a/bbot/worker/worker.cxx
+++ b/bbot/worker/worker.cxx
@@ -296,9 +296,9 @@ build (size_t argc, const char* argv[])
"bpkg.update.update",
"bpkg.test.test",
"bpkg.install.install",
- "b.test_installed.create",
- "b.test_installed.configure",
- "b.test_installed.test",
+ "b.test-installed.create",
+ "b.test-installed.configure",
+ "b.test-installed.test",
"bpkg.uninstall.uninstall"};
// Split the argument into prefix (empty if not present) and unquoted
@@ -335,7 +335,7 @@ build (size_t argc, const char* argv[])
else
{
args.emplace ("bpkg.configure.create", a.second);
- args.emplace ("b.test_installed.create", move (a.second));
+ args.emplace ("b.test-installed.create", move (a.second));
}
};
@@ -385,7 +385,7 @@ build (size_t argc, const char* argv[])
if (mod && !v->first.empty () &&
v->first != "bpkg.configure.create" &&
- v->first != "b.test_installed.create")
+ v->first != "b.test-installed.create")
fail << "invalid module prefix in '" << a << "'";
add_arg (mod ? modules : env_args, move (*v));