Drop 0008-Don-t-downcase-real-xref-in-elisp-mode-tests.patch
authorRob Browning <rlb@defaultvalue.org>
Sat, 11 Jun 2022 16:48:45 +0000 (11:48 -0500)
committerRob Browning <rlb@defaultvalue.org>
Sat, 11 Jun 2022 16:49:53 +0000 (11:49 -0500)
This appears to have been addressed upstream, and now the patch just
breaks the tests.

Patch was originally introduced as
d5991650bfcc9ffa209b84d3a891d322eb2ac4d6.

1  2 
debian/.git-dpm
debian/patches/0003-Remove-files-that-appear-to-be-incompatible-with-the.patch
debian/patches/0006-Don-t-try-to-build-src-macuvs.h-via-IVD_Sequences.tx.patch
debian/patches/0007-Kill-gpg-agent-in-package-test.el-to-avoid-a-race.patch
debian/patches/0008-Mark-vc-bzr-test-fauilt-bzr-autoloads-as-unstable-fo.patch
debian/patches/series

diff --cc debian/.git-dpm
index 38657f93bcd40cea1555c16ca87792c353bc6efc,0000000000000000000000000000000000000000..ea28747b5de36970c90a7a836d569efe5939bfbf
mode 100644,000000..100644
--- /dev/null
@@@ -1,8 -1,0 +1,8 @@@
- 9d5a6d7cb9eb163ec254a8659682f4b9cb2f3c15
- 9d5a6d7cb9eb163ec254a8659682f4b9cb2f3c15
 +# see git-dpm(1) from git-dpm package
++8fe0e537224de59d034315b91f1ed6f62dcdd39e
++8fe0e537224de59d034315b91f1ed6f62dcdd39e
 +659adb1b2432fd5af3b8c78d2bcb95904d278591
 +659adb1b2432fd5af3b8c78d2bcb95904d278591
 +emacs_28.1+1.orig.tar.xz
 +5d15c81727fdd2ce9bf96a31f85be303d5b27d85
 +26956456
index 8697c689664340bf70f0293705296a36be25e433,0000000000000000000000000000000000000000..d8478e73ca564fbc489e18cb5839645e9fef104f
mode 100644,000000..100644
--- /dev/null
@@@ -1,270 -1,0 +1,270 @@@
- @@ -161,7 +161,9 @@ man1dir=$(mandir)/man1
 +From 441b88038e0151f77c6b7676dea64d15ab27607b Mon Sep 17 00:00:00 2001
 +From: Rob Browning <rlb@defaultvalue.org>
 +Date: Mon, 4 Apr 2011 22:46:24 -0500
 +Subject: Remove files that appear to be incompatible with the DFSG
 +
 +Files that appear to be incompatible with the DFSG have been removed.
 +
 +A number of files have been removed from this package because their
 +licenses are not compatible with the Debian Free Software Guidelines
 +(DFSG), or because it wasn't completely clear that their licenses are
 +compatible.
 +
 +In particular, all of the files which are covered under the GFDL and
 +have invariant sections have been removed in accordance with this
 +General Resolution: http://www.debian.org/vote/2006/vote_001.
 +
 +The files that have been removed, but still appear to be
 +distributable, have been moved to packages in Debian's non-free
 +section.
 +
 +Author: Rob Browning <rlb@defaultvalue.org>
 +Added-by: Rob Browning <rlb@defaultvalue.org>
 +Status: new
 +---
 + Makefile.in          | 44 +++++++++++++++++---------------------------
 + admin/update_autogen |  3 +--
 + configure.ac         | 15 ++++++---------
 + doc/misc/Makefile.in | 43 +++++--------------------------------------
 + lisp/help.el         |  8 ++++++++
 + 5 files changed, 37 insertions(+), 76 deletions(-)
 +
 +diff --git a/Makefile.in b/Makefile.in
 +index c902b46ceda..fadcf1015fe 100644
 +--- a/Makefile.in
 ++++ b/Makefile.in
- @@ -885,8 +887,7 @@ endef
++@@ -161,7 +161,9 @@ man1dir=
 + # Where to install and expect the info files describing Emacs.
 + infodir=@infodir@
 + # Info files not in the doc/misc directory (we get those via make echo-info).
 +-INFO_NONMISC=emacs.info eintr.info elisp.info
 ++# Debian: moved DFSG incompatible files to emacs*-common-non-dfsg
 ++# package (see /usr/share/doc/emacs*-common/copyright).
 ++INFO_NONMISC=
 + 
 + # Directory for local state files for all programs.
 + localstatedir=@localstatedir@
- @@ -1035,9 +1036,6 @@ info-dir: ${srcdir}/info/dir
++@@ -885,8 +887,7 @@ $(1)_$(2):
 + ###      normally don't want to recompile.  For example, the 'mostlyclean'
 + ###      target for GCC does not delete 'libgcc.a', because recompiling it
 + ###      is rarely necessary and takes a lot of time.
 +-mostlyclean_dirs = src oldXMenu lwlib lib lib-src nt doc/emacs doc/misc \
 +-  doc/lispref doc/lispintro test
 ++mostlyclean_dirs = src oldXMenu lwlib lib lib-src nt doc/misc test
 + 
 + $(foreach dir,$(mostlyclean_dirs),$(eval $(call submake_template,$(dir),mostlyclean)))
 + 
 +@@ -1000,11 +1001,11 @@ test/%:
 + dist:
 +      cd ${srcdir}; ./make-dist
 + 
 +-DVIS  = lispref-dvi  lispintro-dvi  emacs-dvi  misc-dvi
 +-HTMLS = lispref-html lispintro-html emacs-html misc-html
 +-INFOS = lispref-info lispintro-info emacs-info misc-info
 +-PDFS  = lispref-pdf  lispintro-pdf  emacs-pdf  misc-pdf
 +-PSS   = lispref-ps   lispintro-ps   emacs-ps   misc-ps
 ++DVIS  = misc-dvi
 ++HTMLS = misc-html
 ++INFOS = misc-info
 ++PDFS  = misc-pdf
 ++PSS   = misc-ps
 + 
 + DOCS = $(DVIS) $(HTMLS) $(INFOS) $(PDFS) $(PSS)
 + $(DOCS):
- @@ -1059,14 +1057,10 @@ ${srcdir}/info/dir: ${info_dir_deps}
++@@ -1035,9 +1036,6 @@ info-dir:
 + texi_misc = $(shell MAKEFLAGS= ${MAKE} --no-print-directory -s -C doc/misc echo-sources)
 + 
 + srcdir_doc_info_dir_inputs = \
 +-  ${srcdir}/doc/emacs/emacs.texi \
 +-  ${srcdir}/doc/lispintro/emacs-lisp-intro.texi \
 +-  ${srcdir}/doc/lispref/elisp.texi \
 +   $(addprefix ${srcdir}/doc/misc/,${texi_misc})
 + info_dir_inputs = \
 +   ../build-aux/dir_top \
- @@ -1084,14 +1078,10 @@ install-pdf: $(INSTALL_PDF)
++@@ -1059,14 +1057,10 @@ ${srcdir}/info/dir:
 +       AWK='${AWK}' ../build-aux/make-info-dir ${info_dir_inputs} \
 +      ) >$@.tmp && mv $@.tmp $@
 + 
 +-INSTALL_DVI = install-emacs-dvi install-lispref-dvi \
 +-     install-lispintro-dvi install-misc-dvi
 +-INSTALL_HTML = install-emacs-html install-lispref-html \
 +-     install-lispintro-html install-misc-html
 +-INSTALL_PDF = install-emacs-pdf install-lispref-pdf \
 +-     install-lispintro-pdf install-misc-pdf
 +-INSTALL_PS = install-emacs-ps install-lispref-ps \
 +-     install-lispintro-ps install-misc-ps
 ++INSTALL_DVI = install-misc-dvi
 ++INSTALL_HTML = install-misc-html
 ++INSTALL_PDF = install-misc-pdf
 ++INSTALL_PS = install-misc-ps
 + INSTALL_DOC = $(INSTALL_DVI) $(INSTALL_HTML) $(INSTALL_PDF) $(INSTALL_PS)
 + 
 + ## Install non .info forms of the documentation.
- @@ -6049,7 +6049,7 @@ dnl config.status treats $srcdir specially, so I think this is ok...
++@@ -1084,14 +1078,10 @@ install-pdf:
 + install-ps: $(INSTALL_PS)
 + 
 + 
 +-UNINSTALL_DVI = uninstall-emacs-dvi uninstall-lispref-dvi \
 +-     uninstall-lispintro-dvi uninstall-misc-dvi
 +-UNINSTALL_HTML = uninstall-emacs-html uninstall-lispref-html \
 +-     uninstall-lispintro-html uninstall-misc-html
 +-UNINSTALL_PDF = uninstall-emacs-pdf uninstall-lispref-pdf \
 +-     uninstall-lispintro-pdf uninstall-misc-pdf
 +-UNINSTALL_PS = uninstall-emacs-ps uninstall-lispref-ps \
 +-     uninstall-lispintro-ps uninstall-misc-ps
 ++UNINSTALL_DVI = uninstall-misc-dvi
 ++UNINSTALL_HTML = uninstall-misc-html
 ++UNINSTALL_PDF = uninstall-misc-pdf
 ++UNINSTALL_PS = uninstall-misc-ps
 + UNINSTALL_DOC = $(UNINSTALL_DVI) $(UNINSTALL_HTML) $(UNINSTALL_PDF) $(UNINSTALL_PS)
 + 
 + $(UNINSTALL_DOC):
 +diff --git a/admin/update_autogen b/admin/update_autogen
 +index 5923bee22bb..44e681748af 100755
 +--- a/admin/update_autogen
 ++++ b/admin/update_autogen
 +@@ -260,8 +260,7 @@ info_dir ()
 + $topic
 + EOF
 +         ## Bit faster than doc/*/*.texi.
 +-        for file in doc/emacs/emacs.texi doc/lispintro/*.texi \
 +-            doc/lispref/elisp.texi doc/misc/*.texi; do
 ++        for file in doc/misc/*.texi; do
 + 
 +             ## FIXME do not ignore w32 if OS is w32.
 +             case $file in
 +diff --git a/configure.ac b/configure.ac
 +index 660784347bb..015065e8db6 100644
 +--- a/configure.ac
 ++++ b/configure.ac
- @@ -6104,14 +6104,11 @@ if test ! -f src/.gdbinit && test -f "$srcdir/src/.gdbinit"; then
++@@ -6049,7 +6049,7 @@ AC_DEFUN
 + AC_CONFIG_FILES([$srcdir/doc/man/emacs.1])
 + 
 + m4_define([subdir_makefiles],
 +-  [lib/Makefile lib-src/Makefile oldXMenu/Makefile doc/emacs/Makefile doc/misc/Makefile doc/lispintro/Makefile doc/lispref/Makefile src/Makefile lwlib/Makefile lisp/Makefile leim/Makefile nextstep/Makefile nt/Makefile])
 ++  [lib/Makefile lib-src/Makefile oldXMenu/Makefile doc/misc/Makefile src/Makefile lwlib/Makefile lisp/Makefile leim/Makefile nextstep/Makefile nt/Makefile])
 + SUBDIR_MAKEFILES="subdir_makefiles"
 + AC_CONFIG_FILES(subdir_makefiles)
 + 
- @@ -63,18 +63,14 @@ INSTALL_DATA = @INSTALL_DATA@
++@@ -6104,14 +6104,11 @@ m4_define
 + fi
 + ])
 + 
 +-dnl Perhaps this would be better named doc-emacs-emacsver.texi?
 +-dnl See comments for etc-refcards-emacsver.tex.
 +-dnl Since we get a doc/emacs directory generated anyway, for the Makefile,
 +-dnl it is not quite the same.  But we are generating in $srcdir.
 +-AC_CONFIG_COMMANDS([doc/emacs/emacsver.texi], [
 +-${MAKE-make} -s --no-print-directory -C doc/emacs doc-emacsver || \
 +-AC_MSG_ERROR(['doc/emacs/emacsver.texi' could not be made.])
 +-])
 ++# This file is normally generated indirectly via
 ++# doc/emacs/Makefile.in, but since we've removed the other doc/emacs
 ++# files for the DFSG split, and we don't have any prebuilt info files,
 ++# generate it directly here.
 ++AC_CONFIG_FILES([doc/emacs/emacsver.texi])
 + 
 + dnl If we give this the more natural name, etc/refcards/emacsver.texi,
 + dnl then a directory etc/refcards is created in the build directory,
 +diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in
 +index 1e3398701fc..7c0f5694b23 100644
 +--- a/doc/misc/Makefile.in
 ++++ b/doc/misc/Makefile.in
- @@ -185,20 +178,11 @@ $(foreach ifile,$(filter-out info.info,$(INFO_TARGETS)),$(eval $(call info_templ
++@@ -63,18 +63,14 @@ INSTALL_DATA =
 + MAKEINFO = @MAKEINFO@
 + MAKEINFO_OPTS = --force -I$(emacsdir)
 + 
 ++# Debian: moved DFSG incompatible files to emacs*-common-non-dfsg
 ++# package (see /usr/share/doc/emacs*-common/copyright).
 ++
 + ## On MS Windows, efaq-w32; otherwise blank.
 + DOCMISC_W32 = @DOCMISC_W32@
 + 
 + ## Info files to build and install on all platforms.
 +-INFO_COMMON = auth autotype bovine calc ccmode cl \
 +-     dbus dired-x ebrowse ede ediff edt eieio \
 +-     emacs-mime epa erc ert eshell eudc efaq eww \
 +-     flymake forms gnus emacs-gnutls htmlfontify idlwave ido info.info \
 +-     mairix-el message mh-e modus-themes newsticker nxml-mode octave-mode \
 +-     org pcl-cvs pgg rcirc remember reftex sasl \
 +-     sc semantic ses sieve smtpmail speedbar srecode todo-mode transient \
 +-     tramp url vhdl-mode vip viper widget wisent woman
 ++INFO_COMMON = efaq transient
 + 
 + ## Info files to install on current platform.
 + INFO_INSTALL = $(INFO_COMMON) $(DOCMISC_W32)
 +@@ -161,9 +157,6 @@ define info_template
 +  $(1): $$(buildinfodir)/$(1).info
 + endef
 + 
 +-## "info" is already taken.
 +-info.info: $(buildinfodir)/info.info
 +-
 + $(foreach ifile,$(filter-out info.info,$(INFO_TARGETS)),$(eval $(call info_template,$(ifile))))
 + 
 + 
- @@ -214,23 +198,6 @@ efaq%.pdf: ${srcdir}/efaq%.texi
++@@ -185,20 +178,11 @@ info.info:
 + 
 + ## Extra dependencies.
 + 
 +-need_emacsver = calc cl dired-x efaq efaq-w32 erc ido reftex woman
 ++need_emacsver = efaq efaq-w32
 + need_emacsver_prefix = $(addprefix ${buildinfodir}/,${need_emacsver})
 + 
 + $(need_emacsver_prefix:=.info) $(need_emacsver:=.dvi) $(need_emacsver:=.pdf) $(need_emacsver:=.html) : ${emacsdir}/emacsver.texi
 + 
 +-$(buildinfodir)/gnus.info gnus.html: ${srcdir}/gnus-faq.texi
 +-
 +-$(buildinfodir)/semantic.info semantic.dvi semantic.pdf semantic.html: ${srcdir}/sem-user.texi
 +-
 +-
 +-## Please can we just rename cc-mode.texi to ccmode.texi...
 +-${buildinfodir}/ccmode.info: \
 +-  ${srcdir}/cc-mode.texi ${gfdl} ${style} | ${buildinfodir}
 +-     $(AM_V_GEN)$(MAKEINFO) $(MAKEINFO_OPTS) $(INFO_OPTS) -o $@ $<
 + 
 + ## efaq, efaq_w32 do not depend on gfdl.
 + ## Maybe we can use .SECONDEXPANSION for this.
++@@ -214,23 +198,6 @@ efaq%.pdf:
 + efaq%.html: ${srcdir}/efaq%.texi
 +      $(AM_V_GEN)$(MAKEINFO) $(MAKEINFO_OPTS) $(HTML_OPTS) -o $@ $<
 + 
 +-${buildinfodir}/emacs-mime.info emacs-mime.html: EXTRA_OPTS = --enable-encoding
 +-
 +-gnus_deps = ${srcdir}/gnus.texi ${srcdir}/gnus-faq.texi ${gfdl} ${style}
 +-gnus.dvi: $(gnus_deps)
 +-     sed -e '/@iflatex/,/@end iflatex/d' $< > gnustmpdvi.texi
 +-     $(ENVADD) $(TEXI2DVI) gnustmpdvi.texi
 +-     cp gnustmpdvi.dvi $@
 +-     rm gnustmpdvi.*
 +-
 +-gnus.pdf: $(gnus_deps)
 +-     sed -e '/@iflatex/,/@end iflatex/d' $< > gnustmppdf.texi
 +-     $(ENVADD) $(TEXI2PDF) gnustmppdf.texi
 +-     cp gnustmppdf.pdf $@
 +-     rm gnustmppdf.*
 +-
 +-${buildinfodir}/tramp.info tramp.html: ${srcdir}/trampver.texi
 +-
 + 
 + abs_top_builddir = @abs_top_builddir@
 + EMACS = ${abs_top_builddir}/src/emacs
 +diff --git a/lisp/help.el b/lisp/help.el
 +index fd331ac0d48..cfe6dd90740 100644
 +--- a/lisp/help.el
 ++++ b/lisp/help.el
 +@@ -357,6 +357,14 @@ view-help-file
 +   (goto-address-mode 1)
 +   (goto-char (point-min)))
 + 
 ++(defun debian-expand-file-name-dfsg (filename)
 ++  "Apply expand-file-name to FILENAME.
 ++If expand-file-name does not find a file, append `.dfsg' and try again."
 ++  (let ((file (expand-file-name filename data-directory)))
 ++    (if (file-exists-p file)
 ++        file
 ++      (expand-file-name (concat file ".dfsg") data-directory))))
 ++
 + (defun describe-distribution ()
 +   "Display info on how to obtain the latest version of GNU Emacs."
 +   (interactive)
index 2b3acddc8b09d5e638e8e14a1116a4d941f2389f,0000000000000000000000000000000000000000..0f45004b44b2a4163e386a227d3a0d1c83c12d41
mode 100644,000000..100644
--- /dev/null
@@@ -1,24 -1,0 +1,24 @@@
- @@ -40,7 +40,7 @@ unifiles = $(addprefix ${unidir}/,$(sort $(shell sed -n 's/^[ \t][ \t]*${lparen}
 +From 43fb7a766a21ab7d8acd0d2945221775ab202e10 Mon Sep 17 00:00:00 2001
 +From: Rob Browning <rlb@defaultvalue.org>
 +Date: Tue, 21 Oct 2014 19:10:17 -0500
 +Subject: Don't try to build src/macuvs.h (via IVD_Sequences.txt)
 +
 +These are OS X specific, and were removed for now, due to uncertainty
 +over the licensing.
 +---
 + admin/unidata/Makefile.in | 2 +-
 + 1 file changed, 1 insertion(+), 1 deletion(-)
 +
 +diff --git a/admin/unidata/Makefile.in b/admin/unidata/Makefile.in
 +index 2b0215dde4f..a464dc3933d 100644
 +--- a/admin/unidata/Makefile.in
 ++++ b/admin/unidata/Makefile.in
++@@ -40,7 +40,7 @@ unifiles =
 + 
 + .PHONY: all
 + 
 +-all: ${top_srcdir}/src/macuvs.h ${unifiles} ${unidir}/charscript.el \
 ++all: ${unifiles} ${unidir}/charscript.el \
 +   ${unidir}/charprop.el ${unidir}/emoji-zwj.el
 + 
 + ## Specify .elc as an order-only prereq so as to not needlessly rebuild
index f06a328c241d72a6b08e3305160051ec7733fd9f,0000000000000000000000000000000000000000..a68314f68054f08a9f4292aa7025702e10966b80
mode 100644,000000..100644
--- /dev/null
@@@ -1,41 -1,0 +1,41 @@@
- @@ -161,7 +161,14 @@ package-test-data-dir
 +From 4bf2be7fe1135925db060816b6c9f92f831cc927 Mon Sep 17 00:00:00 2001
 +From: Rob Browning <rlb@defaultvalue.org>
 +Date: Mon, 10 Oct 2016 17:35:56 -0500
 +Subject: Kill gpg agent in package-test.el to avoid a race
 +
 +package-test.el should no longer fail during clean up.
 +
 +* Previously a delete-directories call raced with the gpg agent's own
 +  cleanup process (presumably triggered by the first deletion of one of
 +  the agent's sockets).  As a result, it looks like the agent might
 +  delete one of its sockets after delete-directories had decided to
 +  delete the socket, but before it made the attempt, causing an
 +  exception.
 +
 +* To fix the problem, explicitly ask gpg-connect-agent to kill the agent
 +  before attempting to delete the gnupg home directory, and then delete
 +  via "rm -rf" to ignore any vanishing files.
 +---
 + test/lisp/emacs-lisp/package-tests.el | 9 ++++++++-
 + 1 file changed, 8 insertions(+), 1 deletion(-)
 +
 +diff --git a/test/lisp/emacs-lisp/package-tests.el b/test/lisp/emacs-lisp/package-tests.el
 +index 69c14050b96..2cf57147200 100644
 +--- a/test/lisp/emacs-lisp/package-tests.el
 ++++ b/test/lisp/emacs-lisp/package-tests.el
++@@ -161,7 +161,14 @@ with-package-test
 +               (expand-file-name f package-test-archive-upload-base))))
 +          (delete-directory package-test-archive-upload-base))
 +        (when (file-directory-p package-test-user-dir)
 +-         (delete-directory package-test-user-dir t))
 ++         (call-process "gpg-connect-agent" nil nil nil
 ++                       "--homedir" (concat package-test-user-dir "/gnupg")
 ++                       "--no-autostart"
 ++                       "killagent" "/bye")
 ++         ;; Call "rm -rf" instead of delete-directory so that it won't
 ++         ;; choke if the gpg-agent sockets disappear during the
 ++         ;; recursive traversal.
 ++         (call-process "rm" nil nil nil "-r" package-test-user-dir))
 + 
 +        (when (and (boundp 'package-test-archive-upload-base)
 +                   (file-directory-p package-test-archive-upload-base))
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..b310a0059ffbd77c14480d4f6e8d4e0e5a755bad
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,74 @@@
++From 8fe0e537224de59d034315b91f1ed6f62dcdd39e Mon Sep 17 00:00:00 2001
++From: Rob Browning <rlb@defaultvalue.org>
++Date: Sun, 16 Dec 2018 17:13:36 -0600
++Subject: Mark vc-bzr-test-fauilt-bzr-autoloads as unstable for now
++
++Currently the test fails like this:
++
++  Running 3 tests (2018-12-17 12:17:43-0600)
++     passed  1/3  vc-bzr-test-bug9726
++  Mark set
++  Press C-c C-c when you are done editing.
++  Enter a change comment.  Type C-c C-c when done
++     passed  2/3  vc-bzr-test-bug9781
++  Falling back on "slow" status detection ((file-missing "Opening input file" "No such file or directory" "/tmp/vc-bzr-testVlgmsb/bzr/.bzr/checkout/dirstate"))
++  Error: (error "Running bzr status --no-classify loaddefs.el...FAILED (status 3)")
++  Warnings in `bzr' output: bzr: ERROR: invalid header line: ''
++
++  Error: (error "Running bzr status --no-classify loaddefs.el...FAILED (status 3)")
++  Warnings in `bzr' output: bzr: ERROR: invalid header line: ''
++
++  Test vc-bzr-test-faulty-bzr-autoloads backtrace:
++    logand(nil 128)
++    vc-mode-line("/tmp/vc-bzr-testVlgmsb/bzr/loaddefs.el" Bzr)
++    vc-refresh-state()
++    run-hooks(find-file-hook)
++    after-find-file(t t)
++    find-file-noselect-1(#<buffer loaddefs.el> "/tmp/vc-bzr-testVlgmsb/b
++    find-file-noselect("/tmp/vc-bzr-testVlgmsb/bzr/loaddefs.el")
++    autoload-find-generated-file()
++    update-directory-autoloads("/tmp/vc-bzr-testVlgmsb/bzr/")
++    (progn (update-directory-autoloads default-directory) t)
++    (setq value-35 (progn (update-directory-autoloads default-directory)
++    (unwind-protect (setq value-35 (progn (update-directory-autoloads de
++    (if (unwind-protect (setq value-35 (progn (update-directory-autoload
++    (let (form-description-36) (if (unwind-protect (setq value-35 (progn
++    (let ((value-35 (gensym "ert-form-evaluation-aborted-"))) (let (form
++    (progn (call-process vc-bzr-program nil nil nil "init") (let ((temp-
++    (unwind-protect (progn (call-process vc-bzr-program nil nil nil "ini
++    (let* ((homedir (make-temp-file "vc-bzr-test" t)) (bzrdir (expand-fi
++    (lambda nil (let* ((fn-30 (function executable-find)) (args-31 (cond
++    ert--run-test-internal(#s(ert--test-execution-info :test #s(ert-test
++    ert-run-test(#s(ert-test :name vc-bzr-test-faulty-bzr-autoloads :doc
++    ert-run-or-rerun-test(#s(ert--stats :selector (not (or (tag :expensi
++    ert-run-tests((not (or (tag :expensive-test) (tag :unstable))) #f(co
++    ert-run-tests-batch((not (or (tag :expensive-test) (tag :unstable)))
++    ert-run-tests-batch-and-exit((not (or (tag :expensive-test) (tag :un
++    eval((ert-run-tests-batch-and-exit '(not (or (tag :expensive-test) (
++    command-line-1(("-L" ":/home/locke/tmp/main-26.1/debian/build-src/te
++    command-line()
++    normal-top-level()
++  Test vc-bzr-test-faulty-bzr-autoloads condition:
++      (wrong-type-argument number-or-marker-p nil)
++     FAILED  3/3  vc-bzr-test-faulty-bzr-autoloads
++
++  Ran 3 tests, 2 results as expected, 1 unexpected (2018-12-17 12:17:46-0600)
++
++  1 unexpected results:
++     FAILED  vc-bzr-test-faulty-bzr-autoloads
++---
++ test/lisp/vc/vc-bzr-tests.el | 1 +
++ 1 file changed, 1 insertion(+)
++
++diff --git a/test/lisp/vc/vc-bzr-tests.el b/test/lisp/vc/vc-bzr-tests.el
++index 86d497631cb..b1171edbced 100644
++--- a/test/lisp/vc/vc-bzr-tests.el
+++++ b/test/lisp/vc/vc-bzr-tests.el
++@@ -124,6 +124,7 @@ vc-bzr-test-bug9781
++ ;; https://lists.gnu.org/r/help-gnu-emacs/2012-04/msg00145.html
++ (ert-deftest vc-bzr-test-faulty-bzr-autoloads ()
++   "Test we can generate autoloads in a bzr directory when bzr is faulty."
+++  :tags '(:unstable)
++   (skip-unless (executable-find vc-bzr-program))
++   (let* ((homedir (make-temp-file "vc-bzr-test" t))
++          (bzrdir (expand-file-name "bzr" homedir))
index cf2e0cf827974e11de6ea098adfff4c683bf80aa,0000000000000000000000000000000000000000..a55fa299efbf73d1da8e057ceb22c69cb788492d
mode 100644,000000..100644
--- /dev/null
@@@ -1,9 -1,0 +1,8 @@@
- 0008-Don-t-downcase-real-xref-in-elisp-mode-tests.patch
- 0009-Mark-vc-bzr-test-fauilt-bzr-autoloads-as-unstable-fo.patch
 +0001-Prefer-usr-share-info-emacs.patch
 +0002-Run-debian-startup-and-set-debian-emacs-flavor.patch
 +0003-Remove-files-that-appear-to-be-incompatible-with-the.patch
 +0004-Adjust-documentation-references-for-Debian.patch
 +0005-Modify-the-output-of-version-to-indicate-Debian-modi.patch
 +0006-Don-t-try-to-build-src-macuvs.h-via-IVD_Sequences.tx.patch
 +0007-Kill-gpg-agent-in-package-test.el-to-avoid-a-race.patch
++0008-Mark-vc-bzr-test-fauilt-bzr-autoloads-as-unstable-fo.patch