aboutsummaryrefslogtreecommitdiff
path: root/tests/cli/testllvmpush.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cli/testllvmpush.py')
-rw-r--r--tests/cli/testllvmpush.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/cli/testllvmpush.py b/tests/cli/testllvmpush.py
index 769aa18..1d9b8ab 100644
--- a/tests/cli/testllvmpush.py
+++ b/tests/cli/testllvmpush.py
@@ -101,9 +101,12 @@ class Testllvmpush(LLVMTestCase):
with cd(worktreePath):
self.create_dummy_commit("Test {} push".format(subproj))
- self.run_quietly(self.llvm_push())
+ pushed = self.run_with_output(self.llvm_push())
remote_branch = "linaro-local/{}/{}".format(self.user, self.branch)
+ self.assertRegex(
+ pushed, "(.*\n)*Pushed to {}(.*\n)*".format(remote_branch))
+
for subproj in self.all_repos:
origin = self.get_origin_path(subproj)