← Back to team overview

ubuntu-packaging-guide-team team mailing list archive

[Merge] lp:~logan/ubuntu-packaging-guide/qemu-syntax into lp:ubuntu-packaging-guide

 

Logan Rosen has proposed merging lp:~logan/ubuntu-packaging-guide/qemu-syntax into lp:ubuntu-packaging-guide.

Requested reviews:
  Ubuntu Packaging Guide Team (ubuntu-packaging-guide-team)

For more details, see:
https://code.launchpad.net/~logan/ubuntu-packaging-guide/qemu-syntax/+merge/379261

QEMU spits out a warning when you try to use --- to separate the virtual server arguments. The correct syntax to use now is --.
-- 
Your team Ubuntu Packaging Guide Team is requested to review the proposed merge of lp:~logan/ubuntu-packaging-guide/qemu-syntax into lp:ubuntu-packaging-guide.
=== modified file 'ubuntu-packaging-guide/auto-pkg-test.rst'
--- ubuntu-packaging-guide/auto-pkg-test.rst	2019-08-03 18:22:35 +0000
+++ ubuntu-packaging-guide/auto-pkg-test.rst	2020-02-16 22:45:59 +0000
@@ -109,17 +109,17 @@
 
 Then run the tests of a source package like ``libpng`` in that QEMU image::
 
-        autopkgtest libpng --- qemu adt-trusty-amd64-cloud.img
+        autopkgtest libpng -- qemu adt-trusty-amd64-cloud.img
 
 The Ubuntu CI system runs packages with only selected packages from
 ``-proposed`` available (the package which caused the test to be run); to
 enable that, run::
 
-        autopkgtest libpng -U --apt-pocket=proposed=src:foo --- qemu adt-release-amd64-cloud.img
+        autopkgtest libpng -U --apt-pocket=proposed=src:foo -- qemu adt-release-amd64-cloud.img
 
 or to run with all packages from ``-proposed``::
 
-        autopkgtest libpng -U --apt-pocket=proposed --- qemu adt-release-amd64-cloud.img
+        autopkgtest libpng -U --apt-pocket=proposed -- qemu adt-release-amd64-cloud.img
 
 The ``autopkgtest`` manpage has a lot more valuable information on other
 testing options.