comparison tests/test-check-tag.t @ 6662:279c01842eca

serverminitopic: remove this extension, please use regular topic extension With the introduction of topic namespaces, it seems no longer viable to add features and cover them by tests in multiple extensions (i.e. both topic and serverminitopic). We suggest users switch to the regular evolve and topic extensions on the server side.
author Anton Shestakov <av6@dwimlabs.net>
date Wed, 04 Oct 2023 14:04:40 -0300
parents 479f76c47295
children 02f8c88f3d59
comparison
equal deleted inserted replaced
6658:50f55918b417 6662:279c01842eca
21 > if [ "$branch" != "stable" ]; then 21 > if [ "$branch" != "stable" ]; then
22 > echo "Revision $node is not on stable branch: $branch" 22 > echo "Revision $node is not on stable branch: $branch"
23 > fi 23 > fi
24 > # Here we skip: 24 > # Here we skip:
25 > # - pullbundle because it usually has no changes (so no version bump) 25 > # - pullbundle because it usually has no changes (so no version bump)
26 > # - serverminitopic because it's not actively maintained
27 > if hg grep --rev $node '^__version__ = .*\.dev' hgext3rd/evolve/ hgext3rd/topic/; then 26 > if hg grep --rev $node '^__version__ = .*\.dev' hgext3rd/evolve/ hgext3rd/topic/; then
28 > echo "Versions should not end with .dev at tagged revision $node" 27 > echo "Versions should not end with .dev at tagged revision $node"
29 > fi 28 > fi
30 > entry=`hg cat --rev $node CHANGELOG | fgrep "$tags"` 29 > entry=`hg cat --rev $node CHANGELOG | fgrep "$tags"`
31 > if [ -z "$entry" ]; then 30 > if [ -z "$entry" ]; then