[neovim] 01/02: Disable lua tests on mipsel

James McCoy jamessan at debian.org
Tue Nov 22 19:14:19 UTC 2016


This is an automated email from the git hooks/post-receive script.

jamessan pushed a commit to branch debian/sid
in repository neovim.

commit b6f699dbb2d0c2e649bc627760d2049bc723df22
Author: James McCoy <jamessan at debian.org>
Date:   Tue Nov 22 13:49:02 2016 -0500

    Disable lua tests on mipsel
    
    Signed-off-by: James McCoy <jamessan at debian.org>
---
 debian/changelog |  6 ++++++
 debian/rules     | 13 +++++++++----
 2 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 2d27d60..2377255 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+neovim (0.1.6-5) UNRELEASED; urgency=medium
+
+  * Disable lua testing on mipsel, since lua(jit) bugs are breaking the tests.
+
+ -- James McCoy <jamessan at debian.org>  Tue, 22 Nov 2016 13:43:51 -0500
+
 neovim (0.1.6-4) unstable; urgency=high
 
   * Cherry-pick 4fad66fb and c685879e from upstream to fix an issue where
diff --git a/debian/rules b/debian/rules
index ff05918..472ecad 100755
--- a/debian/rules
+++ b/debian/rules
@@ -2,6 +2,7 @@
 
 DEB_BUILD_MAINT_OPTIONS = hardening=+all
 include /usr/share/dpkg/buildflags.mk
+include /usr/share/dpkg/architecture.mk
 
 # cmake doesn't honor CPPFLAGS
 CFLAGS += $(CPPFLAGS) -DDISABLE_LOG
@@ -11,12 +12,16 @@ export CFLAGS CXXFLAGS LDFLAGS
 
 FUNCTIONALTEST =
 UNITTEST =
-ifneq (,$(findstring ok installed,$(shell dpkg-query -W -f '$${Status}' lua-nvim)))
-  FUNCTIONALTEST = functionaltest
+ifneq (mipsel,$(DEB_HOST_ARCH))
+  ifneq (,$(findstring ok installed,$(shell dpkg-query -W -f '$${Status}' lua-nvim)))
+    FUNCTIONALTEST = functionaltest
+  endif
 endif
 
-ifneq (,$(findstring ok installed,$(shell dpkg-query -W -f '$${Status}' luajit)))
-  UNITTEST = unittest
+ifneq (mipsel,$(DEB_HOST_ARCH))
+  ifneq (,$(findstring ok installed,$(shell dpkg-query -W -f '$${Status}' luajit)))
+    UNITTEST = unittest
+  endif
 endif
 
 export USERNAME = pkg-vim-maintainers

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-vim/neovim.git



More information about the pkg-vim-maintainers mailing list