summaryrefslogtreecommitdiff
path: root/test/src/comp-tests.el
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2023-03-28 14:56:47 +0200
committerAndrea Corallo <akrl@sdf.org>2023-03-28 15:47:54 +0200
commita8c9283e1702af06fb6ad598ae32a2c124860af1 (patch)
treeb3177e3ec29c020a06c3008989bda84e473f7501 /test/src/comp-tests.el
parent8b66d8abd0119a250bc81ca7625a0c8de3e40555 (diff)
downloademacs-a8c9283e1702af06fb6ad598ae32a2c124860af1.tar.gz
Revert "Comp fix calls to redefined primtives with op-bytecode (bug#61917)"
This reverts commit 263d6c38539691c954f4c3057cbe8d5468499b91. These patch series caused a number of regression and more analysis is required.
Diffstat (limited to 'test/src/comp-tests.el')
-rw-r--r--test/src/comp-tests.el13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el
index 1615b2838fc..926ba27e563 100644
--- a/test/src/comp-tests.el
+++ b/test/src/comp-tests.el
@@ -532,19 +532,6 @@ https://lists.gnu.org/archive/html/bug-gnu-emacs/2020-03/msg00914.html."
(should (subr-native-elisp-p
(symbol-function 'comp-test-48029-nonascii-žžž-f))))
-(comp-deftest 61917-1 ()
- "Verify we can compile calls to redefined primitives with
-dedicated byte-op code."
- (let ((f (lambda (fn &rest args)
- (apply fn args))))
- (advice-add #'delete-region :around f)
- (unwind-protect
- (should (subr-native-elisp-p
- (native-compile
- '(lambda ()
- (delete-region (point-min) (point-max))))))
- (advice-remove #'delete-region f))))
-
;;;;;;;;;;;;;;;;;;;;;
;; Tromey's tests. ;;