aboutsummaryrefslogtreecommitdiff
path: root/bdep/bdep.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-05-10 10:34:31 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-05-10 10:34:31 +0200
commit023f1a286b7dfe80eb80a9e6924e492cf6f3f80a (patch)
tree6accbb5ccee95ae5cb7ba9f186b2694c9797b2d9 /bdep/bdep.cxx
parente3133aa9628858bcfe414f95731831b5962358c7 (diff)
Implement test, update, and clean commands
Diffstat (limited to 'bdep/bdep.cxx')
-rw-r--r--bdep/bdep.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/bdep/bdep.cxx b/bdep/bdep.cxx
index f25bed3..b382776 100644
--- a/bdep/bdep.cxx
+++ b/bdep/bdep.cxx
@@ -28,6 +28,9 @@
#include <bdep/fetch.hxx>
#include <bdep/status.hxx>
#include <bdep/config.hxx>
+#include <bdep/test.hxx>
+#include <bdep/update.hxx>
+#include <bdep/clean.hxx>
using namespace std;
using namespace bdep;
@@ -262,6 +265,9 @@ try
COMMAND_IMPL (fetch, fetch, "fetch");
COMMAND_IMPL (status, status, "status");
COMMAND_IMPL (config, config, "config");
+ COMMAND_IMPL (test, test, "test");
+ COMMAND_IMPL (update, update, "update");
+ COMMAND_IMPL (clean, clean, "clean");
assert (false);
fail << "unhandled command";