]> gitweb.factorcode.org Git - factor.git/commitdiff
rocksdb: Disable test for now.
authorDoug Coleman <doug.coleman@gmail.com>
Tue, 24 Nov 2020 14:44:38 +0000 (08:44 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Tue, 24 Nov 2020 14:44:38 +0000 (08:44 -0600)
extra/rocksdb/lib/lib-tests.factor

index 17ae343088348322f1ecff54f62d7e571506efa8..375f4e648ff27ae496173acd46796869137f151d 100644 (file)
@@ -1,15 +1,17 @@
 ! Copyright (C) 2020 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: io.encodings.string io.encodings.utf8 kernel rocksdb.lib
-tools.test ;
+tools.test multiline ;
 IN: rocksdb.lib.tests
 
 : with-my-rocksdb ( quot -- )
     [ "/Users/erg/my-rocks.db" ] dip with-rocksdb ; inline
 
+![[
 { "this is a" } [
     [
         [ make-write-options-sync "a" "this is a" rocksdb-put* drop ]
         [ make-read-options "a" rocksdb-get* drop utf8 decode ] bi 
     ] with-my-rocksdb
-] unit-test
\ No newline at end of file
+] unit-test
+]]