Package: libfiu Version: 0.95-3 Severity: important Tags: patch User: [email protected] Usertags: origin-ubuntu artful ubuntu-patch
Hi Chris, As shown at <https://ci.debian.net/packages/libf/libfiu/unstable/amd64/>, the libfiu autopkgtest has been failing since 0.95-2 due to problems with the autopkgtest infra's parsing of debian/tests/control. The attached patch gets the autopkgtest to work here, by using double quotes instead of single quotes to survive autopkgtest's parser and by setting allow-stderr to account for the error message from ls. I have applied this patch to libfiu in Ubuntu; please consider applying it in Debian as well. Thanks, -- Steve Langasek Give me a lever long enough and a Free OS Debian Developer to set it on, and I can move the world. Ubuntu Developer http://www.debian.org/ [email protected] [email protected]
diff -Nru libfiu-0.95/debian/tests/control libfiu-0.95/debian/tests/control --- libfiu-0.95/debian/tests/control 2016-11-18 00:47:22.000000000 -0800 +++ libfiu-0.95/debian/tests/control 2017-07-25 13:23:39.000000000 -0700 @@ -4,7 +4,8 @@ # Test that fiu-run actually blocks the C call. Depends: @ -Test-Command: ! fiu-run -x -c 'enable name=posix/io/*' /bin/ls +Restrictions: allow-stderr +Test-Command: ! fiu-run -x -c "enable name=posix/io/*" /bin/ls # Smoke test the Python 2 module. Depends: @

