branch: externals/matlab-mode
commit 3aae154a238ac06d178a4ef55817b343253cf2c8
Author: John Ciolfi <john.ciolfi...@gmail.com>
Commit: GitHub <nore...@github.com>

    metest.el: disable metest-fill-paragraph on windows
    
    This test fails on Windows when using Emacs 30.1. Disabling for now. See  
https://github.com/mathworks/Emacs-MATLAB-Mode/issues/34
---
 tests/metest.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tests/metest.el b/tests/metest.el
index de500714ce..76f8f95511 100644
--- a/tests/metest.el
+++ b/tests/metest.el
@@ -66,7 +66,10 @@
 
   (matlab-scan-stats-print)
 
-  (metest-fill-paragraph))
+  ;; TODO - enable this test on Windows. It currently fails, so disabling on
+  ;; windows. See https://github.com/mathworks/Emacs-MATLAB-Mode/issues/34
+  (when (not (eq system-type 'windows-nt))
+    (metest-fill-paragraph)))
 
 (defun metest-run (test)
   "Run and time TEST."

Reply via email to