tests/test-docker-packaging.t
branchstable
changeset 50722 7e5be4a7cda7
parent 43556 e468ebfcb4ce
equal deleted inserted replaced
50721:a10d823a8e3d 50722:7e5be4a7cda7
    20 we're on non-debian machines we can still test the packages that are
    20 we're on non-debian machines we can still test the packages that are
    21 built using docker.
    21 built using docker.
    22 
    22 
    23 main deb should have .so but no .py
    23 main deb should have .so but no .py
    24   $ ar x mercurial_*.deb
    24   $ ar x mercurial_*.deb
    25   $ tar tf data.tar* | egrep '(localrepo|parsers)'
    25   $ tar tf data.tar* | grep -E '(localrepo|parsers)'
    26   ./usr/lib/python2.7/dist-packages/mercurial/parsers*.so (glob)
    26   ./usr/lib/python2.7/dist-packages/mercurial/parsers*.so (glob)
    27 mercurial-common should have .py but no .so or .pyc
    27 mercurial-common should have .py but no .so or .pyc
    28   $ ar x mercurial-common_*.deb
    28   $ ar x mercurial-common_*.deb
    29   $ tar tf data.tar* | egrep '(localrepo|parsers)'
    29   $ tar tf data.tar* | grep -E '(localrepo|parsers)'
    30   ./usr/lib/python2.7/dist-packages/mercurial/pure/parsers.py
    30   ./usr/lib/python2.7/dist-packages/mercurial/pure/parsers.py
    31   ./usr/lib/python2.7/dist-packages/mercurial/localrepo.py
    31   ./usr/lib/python2.7/dist-packages/mercurial/localrepo.py