Package: autopkgtest Version: 2.14.1 Severity: minor Tags: patch There is a typo in the error output:
Usage: adt-run <options> --- <virt-server>... adt-run: error: you must specifiy --- <virt-server>... Attached patch should fix this. -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.13-1-amd64 (SMP w/4 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages autopkgtest depends on: ii apt-utils 1.0.1 ii debhelper 9.20140228 ii pbuilder 0.215 ii python 2.7.5-5 ii python-debian 0.1.21+nmu2 autopkgtest recommends no packages. Versions of packages autopkgtest suggests: pn autopkgtest-xenlvm <none> ii lxc 1.0.0-8 ii qemu-system 2.0.0+dfsg-2 ii qemu-utils 2.0.0+dfsg-2 pn schroot <none> -- no debconf information
>From bfa572fd3babdd54d0bc06404e440339ed86a727 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij <[email protected]> Date: Mon, 21 Apr 2014 14:53:01 +0200 Subject: [PATCH] Fix typo: specifiy -> specify. --- runner/adt-run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner/adt-run b/runner/adt-run index ac8c42f..b669c94 100755 --- a/runner/adt-run +++ b/runner/adt-run @@ -428,7 +428,7 @@ def parse_args(): (opts, args) = parser.parse_args() if not hasattr(opts, 'vserver'): - parser.error('you must specifiy --- <virt-server>...') + parser.error('you must specify --- <virt-server>...') if not opts.vserver[0].startswith('adt-virt-'): opts.vserver[0] = 'adt-virt-' + opts.vserver[0] -- 1.9.2.657.geaba915

