This is an automated email from the git hooks/post-receive script. jamessan pushed a commit to branch master in repository devscripts.
commit a512b1449f46c1106b13360855e9edab191f1732 Author: James McCoy <[email protected]> Date: Wed Oct 29 23:56:51 2014 -0400 sadt: Fix handling of rw-build-tree restriction Signed-off-by: James McCoy <[email protected]> --- debian/changelog | 4 ++++ scripts/sadt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 8f8ce7f..dbef7a2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,10 @@ devscripts (2.14.11) UNRELEASED; urgency=medium * mk-origtargz: Warn about unmatched Files-Excluded patterns. (Closes: #766641) + [ Jakub Wilk ] + * sadt: + + Fix handling of rw-build-tree restriction + -- Paul Wise <[email protected]> Sun, 19 Oct 2014 17:27:24 +0800 devscripts (2.14.10) unstable; urgency=medium diff --git a/scripts/sadt b/scripts/sadt index c92f683..57b308f 100755 --- a/scripts/sadt +++ b/scripts/sadt @@ -225,7 +225,7 @@ class TestGroup(object): allow_stderr = False for r in restrictions: if r == 'rw-build-tree': - options.needs_rw_build_tree = True + options.rw_build_tree_needed = True elif r == 'needs-root': if os.getuid() != 0: raise Skip('this test needs root privileges') -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
