]> git.eshelyaron.com Git - emacs.git/commitdiff
; Remove tramp-tests instrumentation
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 24 Jan 2019 13:36:38 +0000 (14:36 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 24 Jan 2019 13:36:38 +0000 (14:36 +0100)
test/lisp/net/tramp-tests.el

index c9532f54b7c8f372d38eaab0b091c532412a4cf6..5adc6b1a1405d703a0653b82ccdb70e89a14abde 100644 (file)
@@ -3806,7 +3806,6 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
   (skip-unless (tramp--test-enabled))
   (skip-unless (tramp--test-sh-p))
 
-  (tramp--test-instrument-test-case 10
   (dolist (quoted (if (tramp--test-expensive-test) '(nil t) '(nil)))
     (let ((default-directory tramp-test-temporary-file-directory)
          (tmp-name (tramp--test-make-temp-name nil quoted))
@@ -3864,7 +3863,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
            (should (string-equal (buffer-string) "foo")))
 
        ;; Cleanup.
-       (ignore-errors (delete-process proc)))))))
+       (ignore-errors (delete-process proc))))))
 
 (ert-deftest tramp-test30-make-process ()
   "Check `make-process'."
@@ -3873,7 +3872,6 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
   (skip-unless (tramp--test-sh-p))
   (skip-unless (tramp--test-emacs27-p))
 
-  (tramp--test-instrument-test-case 10
   (dolist (quoted (if (tramp--test-expensive-test) '(nil t) '(nil)))
     (let ((default-directory tramp-test-temporary-file-directory)
          (tmp-name (tramp--test-make-temp-name nil quoted))
@@ -3990,7 +3988,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
 
          ;; Cleanup.
          (ignore-errors (delete-process proc))
-         (ignore-errors (kill-buffer stderr))))))))
+         (ignore-errors (kill-buffer stderr)))))))
 
 (ert-deftest tramp-test31-interrupt-process ()
   "Check `interrupt-process'."