# HG changeset patch # User Augie Fackler # Date 1441075497 14400 # Node ID 8c91726caeaeb63ba9c6467acb3d5fbe2c53e80d # Parent ca9bb66c80e9b4075fdfbc33f1475b62ef033ebc test-docker-packaging: test packages built using docker For now this only tests debian packages, but it could easily be extended to also test rpms. diff -r ca9bb66c80e9 -r 8c91726caeae tests/test-docker-packaging.t --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-docker-packaging.t Mon Aug 31 22:44:57 2015 -0400 @@ -0,0 +1,19 @@ +#require test-repo slow docker + + $ OUTPUTDIR=`pwd` + $ export OUTPUTDIR + + $ cd "$TESTDIR"/.. + $ make docker-debian-jessie > $OUTPUTDIR/build.log 2>&1 + $ cd $OUTPUTDIR + $ ls *.deb + mercurial-*.deb (glob) + +We check debian package contents with portable tools so that when +we're on non-debian machines we can still test the packages that are +built using docker. + $ ar x mercurial*.deb + $ tar tf data.tar* | grep localrepo | sort + ./usr/lib/python2.7/site-packages/mercurial/localrepo.py + ./usr/lib/python2.7/site-packages/mercurial/localrepo.pyc + $ rm -f *.deb build.log