From: Ken Brown Date: Sun, 29 Nov 2015 16:23:32 +0000 (-0500) Subject: Update mod-test-sum-test X-Git-Tag: emacs-25.0.90~602 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ff21f455b71d9c566b8526e770632bac6c682f5d;p=emacs.git Update mod-test-sum-test * modules/mod-test/test.el (mod-test-sum-test): Update to accommodate the lack of dladdr on Cygwin. --- diff --git a/modules/mod-test/test.el b/modules/mod-test/test.el index 3cb4e9344ca..a0abdab49e5 100644 --- a/modules/mod-test/test.el +++ b/modules/mod-test/test.el @@ -36,7 +36,9 @@ (string-match (if (eq system-type 'windows-nt) "#" - "#") + (if (eq system-type 'cygwin) + "#" + "#")) (nth 1 descr)))) (should (= (nth 2 descr) 3))) (should-error (mod-test-sum "1" 2) :type 'wrong-type-argument)