aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorAndrea Corallo2019-07-13 17:24:44 +0200
committerAndrea Corallo2020-01-01 11:33:53 +0100
commitfdbdf3da7f0dc09bb04a919b1840652b327b64b4 (patch)
treeba41dac0c7a37ed41dae6a14bc66ab31e2ccd202 /test/src
parent2e20dca7a090b3821e78451f83930b689f5499c7 (diff)
downloademacs-fdbdf3da7f0dc09bb04a919b1840652b327b64b4.tar.gz
emacs-fdbdf3da7f0dc09bb04a919b1840652b327b64b4.zip
symbol-value +1 test
Diffstat (limited to 'test/src')
-rw-r--r--test/src/comp-tests.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el
index 00bb2e09321..1030900752d 100644
--- a/test/src/comp-tests.el
+++ b/test/src/comp-tests.el
@@ -123,14 +123,14 @@
123 123
124 (should (= (comp-tests-aref-aset-f) 100))) 124 (should (= (comp-tests-aref-aset-f) 100)))
125 125
126;; (ert-deftest comp-tests-symbol-value () 126(ert-deftest comp-tests-symbol-value ()
127;; "Testing aref and aset." 127 "Testing aref and aset."
128;; (defvar comp-tests-var2 3) 128 (defvar comp-tests-var2 3)
129;; (defun comp-tests-symbol-value-f () 129 (defun comp-tests-symbol-value-f ()
130;; (symbol-value 'comp-tests-var2)) 130 (symbol-value 'comp-tests-var2))
131;; (native-compile #'comp-tests-symbol-value-f) 131 (native-compile #'comp-tests-symbol-value-f)
132 132
133;; (should (= (comp-tests-symbol-value-f) 3))) 133 (should (= (comp-tests-symbol-value-f) 3)))
134 134
135;; (ert-deftest comp-tests-concat () 135;; (ert-deftest comp-tests-concat ()
136;; "Testing concatX opcodes." 136;; "Testing concatX opcodes."