comparison tests/test-clone-stream.t @ 51484:87d336f91146

stream-clone-tests: stop filtering non existent warning This filtering was introduced in 74c004a515bc, however there is already no warning in that changeset. So I guess the warnings existed when we the patch was created but the problem was solved in another changeset that 74c004a515bc, rebased on.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 28 Feb 2024 22:49:55 +0100
parents 78b437526715
children 2e8a88e5809f
comparison
equal deleted inserted replaced
51483:78b437526715 51484:87d336f91146
578 ---------------------------------------------------------------------- 578 ----------------------------------------------------------------------
579 579
580 $ rm -r empty-repo; hg init empty-repo 580 $ rm -r empty-repo; hg init empty-repo
581 $ (cd empty-repo; touch x; hg commit -Am empty; hg debugstrip -r 0) > /dev/null 581 $ (cd empty-repo; touch x; hg commit -Am empty; hg debugstrip -r 0) > /dev/null
582 $ hg clone -q --stream ssh://user@dummy/empty-repo empty-repo3 582 $ hg clone -q --stream ssh://user@dummy/empty-repo empty-repo3
583 $ hg --cwd empty-repo3 verify -q 2>&1 | grep -v warning 583 $ hg --cwd empty-repo3 verify -q
584 [1]
585
586 The warnings filtered out here are talking about zero-length 'orphan' data files.
587 Those are harmless, so that's fine.
588