]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
tasks: Dump all remotebackend logs, including server logs
authorAki Tuomi <cmouse@cmouse.fi>
Thu, 21 Mar 2024 17:41:56 +0000 (19:41 +0200)
committerAki Tuomi <cmouse@cmouse.fi>
Thu, 4 Apr 2024 07:56:53 +0000 (10:56 +0300)
tasks.py

index f0b3cb8a1e6aafb990026f6396fb160eb1633b21..f3144ed2c03959fdc4f51e16c8548e1d37f611c3 100644 (file)
--- a/tasks.py
+++ b/tasks.py
@@ -647,7 +647,7 @@ def ci_auth_run_unit_tests(c):
     res = c.run('make check', warn=True)
     if res.exited != 0:
       c.run('cat pdns/test-suite.log', warn=True)
-      c.run('cat modules/remotebackend/test-suite.log', warn=True)
+      c.run('more modules/remotebackend/*.log', warn=True)
       raise UnexpectedExit(res)
 
 @task