summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/lib-build-modes17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/lib-build-modes b/tests/lib-build-modes
index 00f3a03..30fbb5a 100644
--- a/tests/lib-build-modes
+++ b/tests/lib-build-modes
@@ -143,6 +143,8 @@ bm-compute-expected () {
done
bm-report-test "SOURCE FILE" $e_source
+ bm-report-test "SOURCE IN CHANGES" $e_source
+ bm-report-test "DEBS IN CHANGES" expr "$e_targets" : '.*binary.*'
exec 4>&-
}
@@ -153,6 +155,8 @@ bm-run-one () {
bmid="$act,$cleanmode,$branch"
bmid=${bmid// /_}
+ rm -f ../${p}_{v}_*.changes
+
heading="===== [$bmid] dgit $args ====="
bmlog=$tmp/run.$bmid.output
@@ -194,6 +198,19 @@ bm-run-one () {
bm-report-test "SOURCE FILE" [ -e $dsc ]
+ if [ $actual_status = success ]; then
+ local changes=$(echo ../example_${v}_*.changes)
+ case "$changes" in
+ *' '*) fail "build generated ambiguous .changes: $changes" ;;
+ esac
+
+ perl -ne 'print if m/^files:/i ... m/^\S/' \
+ <$changes >$changes.files
+
+ bm-report-test "SOURCE IN CHANGES" grep '\.dsc$' $changes.files
+ bm-report-test "DEBS IN CHANGES" grep '\.deb$' $changes.files
+ fi
+
exec 4>&-
$bm_quirk_before_diff