ocaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

More cram testing

authored by

Kento Okura and committed by
Jon Sterling
d0d1730e d721d5cb

+62
+15
test/Build.t
··· 1 + Run build: 2 + 3 + $ cd cram-forest 4 + $ forester build forest.toml 5 + ○ Parse trees... 6 + 7 + ○ Expand, evaluate and analyse forest... 8 + 9 + 10 + $ cat output/forest.json 11 + {"index":{"title":"Hello","taxon":null,"tags":[],"route":"index.xml","metas":{}}} 12 + 13 + $ ls output 14 + forest.json 15 + index.xml
+35
test/Export.t
··· 1 + $ cd forest 2 + 3 + Export the forest defined by `export.toml` 4 + 5 + $ forester export export.toml 6 + ○ Parse trees... 7 + 8 + ○ Expand, evaluate and analyse forest... 9 + 10 + ○ Exporting forest... 11 + $ ls export 12 + 13 + 14 + Verify that the foreign blob can be implanted. 15 + 16 + $ forester build forest.toml 17 + ○ Implant foreign forest from `./export/foreign.json'... 18 + 19 + ○ Parse trees... 20 + 21 + ○ Expand, evaluate and analyse forest... 22 + 23 + Fatal error: exception Eio.Io Fs Permission_denied Unix_error (Invalid cross-device link, "openat2", ""), 24 + opening <cwd:output/forest.json> 25 + Raised at Stdlib__Effect.Deep.try_with.(fun) in file "effect.ml", line 101, characters 47-54 26 + Called from Eio_unix__Thread_pool.run in file "lib_eio/unix/thread_pool.ml", line 108, characters 8-13 27 + Re-raised at Eio_unix__Thread_pool.run in file "lib_eio/unix/thread_pool.ml", line 113, characters 4-39 28 + Called from Eio_linux__Sched.run.(fun) in file "lib_eio_linux/sched.ml", line 468, characters 22-90 29 + Re-raised at Eio_linux__Sched.run in file "lib_eio_linux/sched.ml", line 479, characters 22-57 30 + Called from Eio_linux__Sched.with_eventfd in file "lib_eio_linux/sched.ml", line 506, characters 8-18 31 + Re-raised at Eio_linux__Sched.with_eventfd in file "lib_eio_linux/sched.ml", line 511, characters 4-39 32 + Called from Eio_linux__Sched.with_sched in file "lib_eio_linux/sched.ml", lines 543-545, characters 8-109 33 + Re-raised at Eio_linux__Sched.with_sched in file "lib_eio_linux/sched.ml", line 556, characters 8-43 34 + Called from Dune__exe__Main in file "bin/forester/main.ml", lines 396-398, characters 2-44 35 + [2]
+5
test/Test_implanting.ml
··· 1 + (* 2 + * SPDX-FileCopyrightText: 2024 The Forester Project Contributors 3 + * 4 + * SPDX-License-Identifier: GPL-3.0-or-later 5 + *)
+6
test/cram-forest/forest.toml
··· 1 + [forest] 2 + host = "cram" 3 + trees = ["trees" ] 4 + assets = [] 5 + theme = "theme" 6 + home = "index"
+1
test/cram-forest/trees/index.tree
··· 1 + \title{hello}