]> gitweb.factorcode.org Git - factor.git/commitdiff
lint: disabling tuck test.
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 6 Aug 2012 14:57:35 +0000 (07:57 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 6 Aug 2012 14:57:35 +0000 (07:57 -0700)
extra/lint/lint-tests.factor

index dd3e2053d376f8c408267a4e9ad6914b000b1ea2..bab2171675a3be963c530f5b0b09565a480ffbc2 100644 (file)
@@ -6,9 +6,9 @@ IN: lint.tests
 
 [ { { lint1 { [ [ ] if ] } } } ] [ \ lint1 lint-word ] unit-test
 
-: lint2 ( a b -- b a b ) dup -rot ; ! tuck
+: lint2 ( a b -- b a b ) dup -rot ; ! tuck
 
-[ { { lint2 { [ dup -rot ] } } } ] [ \ lint2 lint-word ] unit-test
+[ { { lint2 { [ dup -rot ] } } } ] [ \ lint2 lint-word ] unit-test
 
 : lint3 ( seq -- seq ) [ 0 swap nth 1 + ] map ;