summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 6fe6da8..93a8aee 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -80,7 +80,7 @@ UNITTESTS_FACTORY.addSteps([
name="Unit tests",
description="Running unit tests",
descriptionDone="Unit tests done",
- command=["make check"]
+ command=["make", "check"]
)
])
@@ -91,7 +91,7 @@ INTEGRATION_TESTS_FACTORY.addSteps([
name="Integration tests",
description="Running the integration tests",
descriptionDone="Integration tests done",
- command=["make tests"]
+ command=["make", "tests"]
)
])