summaryrefslogtreecommitdiff
path: root/tests/integration/autotools.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/autotools.py')
-rw-r--r--tests/integration/autotools.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/integration/autotools.py b/tests/integration/autotools.py
index 86a06aa4f..d1ab82e53 100644
--- a/tests/integration/autotools.py
+++ b/tests/integration/autotools.py
@@ -44,6 +44,14 @@ def test_autotools_build(cli, datafiles):
],
)
+ # Check the log
+ result = cli.run(project=project, args=["artifact", "log", element_name])
+ assert result.exit_code == 0
+ log = result.output
+
+ # Verify we get expected output exactly once
+ assert log.count("Making all in src") == 1
+
# Test that an autotools build 'works' - we use the autotools sample
# amhello project for this.