(should (eq 'flymake-warning (face-at-point)))
(should-error (flymake-goto-next-error nil nil t)))))
-(ert-deftest included-c-header-files ()
- "Test inclusion of .h header files."
- (skip-unless (and (executable-find "gcc")
- (not (ert-gcc-is-clang-p))
- (executable-find "make")))
- (let ((flymake-wrap-around nil))
- (flymake-tests--with-flymake
- ("some-problems.h")
- (flymake-goto-next-error)
- (should (eq 'flymake-warning (face-at-point)))
- (flymake-goto-next-error)
- (should (eq 'flymake-error (face-at-point)))
- (should-error (flymake-goto-next-error nil nil t)))
- (flymake-tests--with-flymake
- ("no-problems.h")
- (should-error (flymake-goto-next-error nil nil t)))))
+;; (ert-deftest included-c-header-files ()
+;; "Test inclusion of .h header files."
+;; (skip-unless (and (executable-find "gcc")
+;; (not (ert-gcc-is-clang-p))
+;; (executable-find "make")))
+;; (let ((flymake-wrap-around nil))
+;; (flymake-tests--with-flymake
+;; ("some-problems.h")
+;; (flymake-goto-next-error)
+;; (should (eq 'flymake-warning (face-at-point)))
+;; (flymake-goto-next-error)
+;; (should (eq 'flymake-error (face-at-point)))
+;; (should-error (flymake-goto-next-error nil nil t)))
+;; (flymake-tests--with-flymake
+;; ("no-problems.h")
+;; (should-error (flymake-goto-next-error nil nil t)))))
(defmacro flymake-tests--assert-set (set
should