Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Drewery <bryan@shatow.net>2022-11-04 23:03:08 +0300
committerBryan Drewery <bryan@shatow.net>2022-11-05 18:45:14 +0300
commitc837a735be74777b11ad6d2fbb6656b8cbe30d45 (patch)
tree8888aff042a949228d3dd396d63b2ccb2e32b71e
parentd10fcb84b68a54b2967eb34e485fef7c5eaea9c4 (diff)
bulk tests: Clarify some tests are specifically on the test framework itself
-rw-r--r--test/common.bulk.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/common.bulk.sh b/test/common.bulk.sh
index 4e338557..d83fbed6 100644
--- a/test/common.bulk.sh
+++ b/test/common.bulk.sh
@@ -490,25 +490,25 @@ assert_bulk_queue_and_stats() {
# This is testing the test framework
assert "$(sorted ${EXPECTED_LISTPORTS_IGNORED})" \
"$(sorted ${LISTPORTS_IGNORED-null})" \
- "LISTPORTS_IGNORED should match"
+ "(test framework) LISTPORTS_IGNORED should match"
# Assert the non-ignored ports list is right
# This is testing the test framework
assert "$(sorted ${EXPECTED_LISTPORTS_NOIGNORED})" \
"$(sorted ${LISTPORTS_NOIGNORED-null})" \
- "LISTPORTS_NOIGNORED should match"
+ "(test framework) LISTPORTS_NOIGNORED should match"
# Assert that IGNOREDPORTS was populated by the framework right.
# This is testing the test framework
assert "$(sorted ${EXPECTED_IGNORED-})" \
"$(sorted ${IGNOREDPORTS-null})" \
- "IGNOREDPORTS should match"
+ "(test framework) IGNOREDPORTS should match"
# Assert that skipped ports are right
# This is testing the test framework
assert "$(sorted ${EXPECTED_SKIPPED-})" \
"$(sorted ${SKIPPEDPORTS-null})" \
- "SKIPPEDPORTS should match"
+ "(test framework) SKIPPEDPORTS should match"
### Now do tests against the output of the bulk run. ###