this repo has no description
0
fork

Configure Feed

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

Fix environment capture to only capture value bindings

- Filter identifiers in capture_runtime_values to only capture values,
not exceptions, modules, or types. This prevents "Fatal error: X unbound
at toplevel" messages from Toploop.getvalue.
- Change environment logging from INFO to DEBUG level
- Change unix_worker log level from INFO to WARNING
- Update test expected outputs

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+69 -2250
+1 -1
example/unix_worker.ml
··· 163 163 let start_server () = 164 164 let open U in 165 165 Logs.set_reporter (Logs_fmt.reporter ()); 166 - Logs.set_level (Some Logs.Info); 166 + Logs.set_level (Some Logs.Warning); 167 167 (* let pid = Unix.getpid () in *) 168 168 Server.init (IdlM.T.lift init); 169 169 Server.create_env (IdlM.T.lift create_env);
+25 -10
lib/environment.ml
··· 12 12 module StringMap = Map.Make (String) 13 13 14 14 (* Debug logging - uses the Logs module which is configured in the worker *) 15 - let log_debug msg = Logs.info (fun m -> m "%s" msg) 15 + let log_debug msg = Logs.debug (fun m -> m "%s" msg) 16 16 17 17 type id = string 18 18 ··· 75 75 log_debug (Printf.sprintf "[ENV] setvalue %s failed: %s" name (Printexc.to_string e)) 76 76 ) values 77 77 78 + (** Check if an identifier is a value binding in the given environment. 79 + Returns true for let-bindings, false for exceptions, modules, types, etc. *) 80 + let is_value_binding typing_env ident = 81 + try 82 + let path = Path.Pident ident in 83 + let _ = Env.find_value path typing_env in 84 + true 85 + with Not_found -> false 86 + 78 87 (** Capture runtime values for the given identifiers. 88 + Only captures value bindings (not exceptions, modules, etc.). 79 89 Returns an updated map with the new values. *) 80 - let capture_runtime_values env_id base_map idents = 81 - if idents <> [] then 82 - log_debug (Printf.sprintf "[ENV] Capturing %d new bindings for env %s" (List.length idents) env_id); 90 + let capture_runtime_values typing_env env_id base_map idents = 91 + (* Filter to only value bindings to avoid "Fatal error" from Toploop.getvalue *) 92 + let value_idents = List.filter (is_value_binding typing_env) idents in 93 + if value_idents <> [] then 94 + log_debug (Printf.sprintf "[ENV] Capturing %d value bindings for env %s (filtered from %d total)" 95 + (List.length value_idents) env_id (List.length idents)); 83 96 List.fold_left (fun map ident -> 84 97 let name = toplevel_name ident in 85 98 try ··· 89 102 with e -> 90 103 log_debug (Printf.sprintf "[ENV] could not capture %s: %s" name (Printexc.to_string e)); 91 104 map 92 - ) base_map idents 105 + ) base_map value_idents 93 106 94 107 let with_env env f = 95 108 log_debug (Printf.sprintf "[ENV] with_env called for %s (has_saved_env=%b, runtime_values_count=%d)" ··· 116 129 try f () 117 130 with exn -> 118 131 (* Capture new bindings before re-raising *) 119 - let new_idents = Env.diff saved_typing_env_before !Toploop.toplevel_env in 120 - let updated_values = capture_runtime_values env.id env.runtime_values new_idents in 132 + let current_typing_env = !Toploop.toplevel_env in 133 + let new_idents = Env.diff saved_typing_env_before current_typing_env in 134 + let updated_values = capture_runtime_values current_typing_env env.id env.runtime_values new_idents in 121 135 env.runtime_values <- updated_values; 122 - env.toplevel_env <- Some !Toploop.toplevel_env; 136 + env.toplevel_env <- Some current_typing_env; 123 137 Toploop.toplevel_env := saved_typing_env; 124 138 raise exn 125 139 in 126 140 127 141 (* Capture new bindings that were added during execution *) 128 - let new_idents = Env.diff saved_typing_env_before !Toploop.toplevel_env in 142 + let current_typing_env = !Toploop.toplevel_env in 143 + let new_idents = Env.diff saved_typing_env_before current_typing_env in 129 144 log_debug (Printf.sprintf "[ENV] Env.diff found %d new idents for %s" (List.length new_idents) env.id); 130 - let updated_values = capture_runtime_values env.id env.runtime_values new_idents in 145 + let updated_values = capture_runtime_values current_typing_env env.id env.runtime_values new_idents in 131 146 132 147 (* Save the updated environment state *) 133 148 env.runtime_values <- updated_values;
+43 -98
test/cram/directives.t/run.t
··· 7 7 8 8 $ export OCAMLRUNPARAM=b 9 9 $ unix_worker & 10 - unix_worker: [INFO] init() 11 - unix_worker: [INFO] init() finished 12 - unix_worker: [INFO] init() 13 - unix_worker: [INFO] init() finished 14 - unix_worker: [INFO] setup() for env default... 15 - unix_worker: [INFO] Setup complete 16 - unix_worker: [INFO] setup() finished for env default 17 - unix_worker: [INFO] setup() for env default... 18 - unix_worker: [INFO] setup() already done for env default 19 10 $ sleep 2 20 11 $ unix_client init '{ findlib_requires:[], execute: true }' 21 12 N 22 13 $ unix_client setup '' 23 - {mime_vals:[];stderr:S(Environment already set up)} 14 + {mime_vals:[];stderr:S(error while evaluating #enable "pretty";; 15 + error while evaluating #disable "shortvar";;);stdout:S(OCaml version 5.4.0 16 + Unknown directive enable. 17 + Unknown directive disable.)} 24 18 25 19 ============================================== 26 20 SECTION 1: Basic Code Execution (Baseline) ··· 488 482 489 483 $ unix_client exec_toplevel '' '# #require "str";;' 490 484 {mime_vals:[];parts:[];script:S(# #require "str";; 491 - unix_worker: [INFO] Custom #require: loading str 492 - /home/node/.opam/default/lib/ocaml/str: added to search path 493 - unix_worker: [INFO] Custom #require: str loaded)} 485 + /home/node/.opam/default/lib/ocaml/str: added to search path)} 494 486 495 487 $ unix_client exec_toplevel '' '# Str.regexp "test";;' 496 488 {mime_vals:[];parts:[];script:S(# Str.regexp "test";; ··· 502 494 503 495 $ unix_client exec_toplevel '' '# #list;;' 504 496 {mime_vals:[];parts:[];script:S(# #list;; 497 + 0install-solver (version: 2.18) 505 498 afl-persistent (version: n/a) 506 499 alcotest (version: 1.9.1) 507 500 alcotest.engine (version: 1.9.1) ··· 516 509 base.base_internalhash_types (version: v0.17.3) 517 510 base.md5 (version: v0.17.3) 518 511 base.shadow_stdlib (version: v0.17.3) 519 - base64 (version: 3.4.0) 520 - base64.rfc2045 (version: 3.4.0) 521 - base_bigstring (version: v0.17.0) 522 - base_quickcheck (version: v0.17.1) 523 - base_quickcheck.ppx_quickcheck (version: v0.17.1) 524 - base_quickcheck.ppx_quickcheck.expander (version: v0.17.1) 525 - base_quickcheck.ppx_quickcheck.runtime (version: v0.17.1) 526 - bigstringaf (version: 0.9.0) 527 - bin_prot (version: v0.17.0) 528 - bin_prot.shape (version: v0.17.0) 512 + base64 (version: 3.5.2) 513 + base64.rfc2045 (version: 3.5.2) 514 + bigstringaf (version: 0.10.0) 529 515 bos (version: 0.2.1) 530 516 bos.setup (version: 0.2.1) 531 517 bos.top (version: 0.2.1) ··· 535 521 brr.poke (version: 0.0.8) 536 522 brr.poked (version: 0.0.8) 537 523 bytes (version: [distributed with OCaml 4.02 or above]) 538 - bytesrw (version: 0.3.0) 539 - bytesrw.sysrandom (version: 0.3.0) 540 - bytesrw.unix (version: 0.3.0) 524 + bytesrw (version: 0.2.0) 525 + bytesrw.unix (version: 0.2.0) 541 526 camlp-streams (version: n/a) 542 - capitalization (version: v0.17.0) 543 - cbor (version: n/a) 544 - cbort (version: 529a03c) 527 + cbort (version: 3b8adfd) 545 528 checkseum (version: 0.5.2) 546 529 checkseum.c (version: 0.5.2) 547 530 checkseum.ocaml (version: 0.5.2) 548 531 chrome-trace (version: 3.21.0) 549 - cmdliner (version: 2.1.0) 532 + cmdliner (version: 1.3.0) 550 533 compiler-libs (version: 5.4.0) 551 534 compiler-libs.bytecomp (version: 5.4.0) 552 535 compiler-libs.common (version: 5.4.0) 553 536 compiler-libs.native-toplevel (version: 5.4.0) 554 537 compiler-libs.optcomp (version: 5.4.0) 555 538 compiler-libs.toplevel (version: 5.4.0) 556 - core (version: v0.17.1) 557 - core.base_for_tests (version: v0.17.1) 558 - core.command (version: v0.17.1) 559 - core.filename_base (version: v0.17.1) 560 - core.heap_block (version: v0.17.1) 561 - core.top (version: v0.17.1) 562 - core.univ_map (version: v0.17.1) 563 - core.validate (version: v0.17.1) 564 539 cppo (version: n/a) 565 540 crowbar (version: n/a) 566 541 crunch (version: 4.0.0) ··· 571 546 ctypes.foreign (version: 0.24.0) 572 547 ctypes.stubs (version: 0.24.0) 573 548 ctypes.top (version: 0.24.0) 549 + day10 (version: n/a) 574 550 decompress (version: n/a) 575 551 decompress.de (version: 1.5.3) 576 552 decompress.gz (version: 1.5.3) 577 553 decompress.lz (version: 1.5.3) 578 554 decompress.lzo (version: 1.5.3) 579 555 decompress.zl (version: 1.5.3) 580 - domain-local-await (version: 0.1.0) 556 + dockerfile (version: n/a) 557 + domain-local-await (version: 1.0.1) 581 558 dot-merlin-reader (version: n/a) 582 559 dune (version: n/a) 583 560 dune-build-info (version: 3.21.0) ··· 598 575 eio_posix (version: n/a) 599 576 either (version: 1.0.0) 600 577 fiber (version: 3.7.0) 601 - fieldslib (version: v0.17.0) 602 578 findlib (version: 1.9.8) 603 579 findlib.dynload (version: 1.9.8) 604 580 findlib.internal (version: 1.9.8) ··· 611 587 fpath (version: 0.7.3) 612 588 fpath.top (version: 0.7.3) 613 589 fs-io (version: 3.21.0) 614 - gel (version: v0.17.0) 615 - gen (version: 0.5.3) 590 + gen (version: 1.1) 616 591 hmap (version: 0.8.1) 617 - int_repr (version: v0.17.0) 618 592 integers (version: n/a) 619 593 integers.top (version: n/a) 620 - iomux (version: v0.2) 594 + iomux (version: v0.4) 621 595 jane-street-headers (version: v0.17.0) 622 596 js_of_ocaml (version: 6.2.0) 623 597 js_of_ocaml-compiler (version: 6.2.0) ··· 635 609 js_top_worker-client (version: 0.0.1) 636 610 js_top_worker-client_fut (version: 0.0.1) 637 611 js_top_worker-rpc (version: 0.0.1) 612 + js_top_worker-rpc.__private__ (version: n/a) 613 + js_top_worker-rpc.__private__.js_top_worker_message (version: 0.0.1) 638 614 js_top_worker-unix (version: n/a) 639 615 js_top_worker-web (version: 0.0.1) 640 616 js_top_worker_rpc_def (version: n/a) ··· 642 618 js_top_worker_rpc_def.__private__.js_top_worker_rpc_def (version: 0.0.1) 643 619 jsonm (version: 1.0.2) 644 620 jsonrpc (version: 1.25.0) 621 + jsont (version: 0.2.0) 622 + jsont.brr (version: 0.2.0) 623 + jsont.bytesrw (version: 0.2.0) 645 624 jst-config (version: v0.17.0) 625 + lambda-term (version: 3.2.0) 646 626 logs (version: 0.10.0) 647 627 logs.browser (version: 0.10.0) 648 628 logs.cli (version: 0.10.0) ··· 652 632 logs.top (version: 0.10.0) 653 633 lsp (version: 1.25.0) 654 634 lwt (version: 6.0.0) 655 - lwt-dllist (version: 1.0.0) 635 + lwt-dllist (version: 1.1.0) 656 636 lwt.unix (version: 6.0.0) 657 637 lwt_react (version: 1.2.0) 658 638 menhir (version: n/a) ··· 686 666 mtime.clock (version: 2.1.0) 687 667 mtime.clock.os (version: 2.1.0) 688 668 mtime.top (version: 2.1.0) 689 - num (version: 1.7~dev) 690 - num-top (version: 1.7~dev) 691 - num.core (version: 1.7~dev) 692 669 ocaml-compiler-libs (version: n/a) 693 670 ocaml-compiler-libs.bytecomp (version: v0.17.0) 694 671 ocaml-compiler-libs.common (version: v0.17.0) ··· 717 694 ocamlformat.bin_conf (version: 0.28.1) 718 695 ocamlformat.rpc (version: 0.28.1) 719 696 ocamlformat.rpc_lib_protocol (version: 0.28.1) 720 - ocamlgraph (version: 2.0.0) 697 + ocamlgraph (version: 2.2.0) 721 698 ocp-indent (version: n/a) 722 699 ocp-indent.dynlink (version: 1.9.0) 723 700 ocp-indent.lexer (version: 1.9.0) ··· 727 704 ocplib-endian.bigstring (version: n/a) 728 705 odoc (version: n/a) 729 706 odoc-parser (version: 3.1.0) 707 + odoc.__private__ (version: n/a) 708 + odoc.__private__.odoc_model_semantics_test (version: 3.1.0) 730 709 odoc.document (version: 3.1.0) 731 710 odoc.examples (version: 3.1.0) 732 711 odoc.html (version: 3.1.0) ··· 748 727 odoc.syntax_highlighter (version: 3.1.0) 749 728 odoc.xref2 (version: 3.1.0) 750 729 odoc.xref_test (version: 3.1.0) 730 + opam-0install (version: 0.4.2) 751 731 opam-core (version: n/a) 752 732 opam-core.cmdliner (version: n/a) 753 733 opam-file-format (version: 2.2.0) 754 734 opam-format (version: n/a) 735 + opam-repository (version: n/a) 736 + opam-state (version: n/a) 755 737 optint (version: 0.3.0) 756 738 ordering (version: 3.21.0) 757 - parsexp (version: v0.17.0) 758 739 patch (version: 3.1.0) 759 740 pp (version: 2.0.0) 760 741 ppx_assert (version: v0.17.0) 761 742 ppx_assert.runtime-lib (version: v0.17.0) 762 743 ppx_base (version: v0.17.0) 763 - ppx_bench (version: v0.17.1) 764 - ppx_bench.runtime-lib (version: v0.17.1) 765 - ppx_bin_prot (version: v0.17.1) 766 - ppx_bin_prot.shape-expander (version: v0.17.1) 744 + ppx_blob (version: 0.9.0) 767 745 ppx_cold (version: v0.17.0) 768 746 ppx_compare (version: v0.17.0) 769 747 ppx_compare.expander (version: v0.17.0) 770 748 ppx_compare.runtime-lib (version: v0.17.0) 771 - ppx_custom_printf (version: v0.17.0) 772 749 ppx_derivers (version: n/a) 773 750 ppx_deriving (version: n/a) 774 751 ppx_deriving.api (version: 6.1.1) ··· 784 761 ppx_deriving.show (version: 6.1.1) 785 762 ppx_deriving.std (version: 6.1.1) 786 763 ppx_deriving_rpc (version: 10.0.0) 787 - ppx_diff (version: n/a) 788 - ppx_diff.diffable (version: v0.17.1) 789 - ppx_diff.diffable_cinaps (version: v0.17.1) 790 - ppx_diff.ppx_diff (version: v0.17.1) 791 - ppx_disable_unused_warnings (version: v0.17.0) 764 + ppx_deriving_yojson (version: 3.10.0) 765 + ppx_deriving_yojson.runtime (version: 3.10.0) 792 766 ppx_enumerate (version: v0.17.0) 793 767 ppx_enumerate.runtime-lib (version: v0.17.0) 794 768 ppx_expect (version: v0.17.3) ··· 797 771 ppx_expect.evaluator (version: v0.17.3) 798 772 ppx_expect.make_corrected_file (version: v0.17.3) 799 773 ppx_expect.runtime (version: v0.17.3) 800 - ppx_fields_conv (version: v0.17.0) 801 - ppx_fixed_literal (version: v0.17.0) 802 774 ppx_globalize (version: v0.17.2) 803 775 ppx_hash (version: v0.17.0) 804 776 ppx_hash.expander (version: v0.17.0) ··· 806 778 ppx_here (version: v0.17.0) 807 779 ppx_here.expander (version: v0.17.0) 808 780 ppx_here.runtime-lib (version: v0.17.0) 809 - ppx_ignore_instrumentation (version: v0.17.0) 810 781 ppx_inline_test (version: v0.17.1) 811 782 ppx_inline_test.config (version: v0.17.1) 812 783 ppx_inline_test.drop (version: v0.17.1) ··· 814 785 ppx_inline_test.runner (version: v0.17.1) 815 786 ppx_inline_test.runner.lib (version: v0.17.1) 816 787 ppx_inline_test.runtime-lib (version: v0.17.1) 817 - ppx_jane (version: v0.17.0) 818 - ppx_jane.kernel (version: v0.17.0) 819 - ppx_let (version: v0.17.1) 820 - ppx_let.expander (version: v0.17.1) 821 - ppx_log (version: v0.17.0) 822 - ppx_log.kernel (version: v0.17.0) 823 - ppx_log.syntax (version: v0.17.0) 824 - ppx_log.types (version: v0.17.0) 825 - ppx_module_timer (version: v0.17.0) 826 - ppx_module_timer.runtime (version: v0.17.0) 827 788 ppx_optcomp (version: v0.17.1) 828 - ppx_optional (version: v0.17.0) 829 - ppx_pipebang (version: v0.17.0) 830 789 ppx_sexp_conv (version: v0.17.1) 831 790 ppx_sexp_conv.expander (version: v0.17.1) 832 791 ppx_sexp_conv.runtime-lib (version: v0.17.1) 833 - ppx_sexp_message (version: v0.17.0) 834 - ppx_sexp_message.expander (version: v0.17.0) 835 - ppx_sexp_value (version: v0.17.0) 836 - ppx_stable (version: v0.17.1) 837 - ppx_stable_witness (version: v0.17.0) 838 - ppx_stable_witness.runtime (version: v0.17.0) 839 - ppx_stable_witness.stable_witness (version: v0.17.0) 840 - ppx_string (version: v0.17.0) 841 - ppx_string.runtime (version: v0.17.0) 842 - ppx_string_conv (version: v0.17.0) 843 - ppx_tydi (version: v0.17.1) 844 - ppx_typerep_conv (version: v0.17.1) 845 - ppx_variants_conv (version: v0.17.1) 846 792 ppx_yojson_conv_lib (version: v0.17.0) 847 793 ppxlib (version: 0.37.0) 848 794 ppxlib.__private__ (version: n/a) ··· 858 804 ppxlib.traverse (version: 0.37.0) 859 805 ppxlib.traverse_builtins (version: 0.37.0) 860 806 ppxlib_jane (version: v0.17.4) 861 - psq (version: 0.2.0) 807 + ppxlib_register (version: 020c7bb-dirty) 808 + psq (version: 0.2.1) 862 809 ptime (version: 1.2.0) 863 810 ptime.clock (version: 1.2.0) 864 811 ptime.clock.os (version: 1.2.0) ··· 888 835 sedlex.ppx (version: 3.7) 889 836 sedlex.utils (version: 3.7) 890 837 seq (version: [distributed with OCaml 4.07 or above]) 891 - sexplib (version: v0.17.0) 892 - sexplib.num (version: v0.17.0) 893 - sexplib.unix (version: v0.17.0) 894 838 sexplib0 (version: v0.17.0) 895 839 sha (version: v1.15.4) 896 840 spawn (version: v0.17.0) 897 - splittable_random (version: v0.17.0) 841 + spdx_licenses (version: 1.4.0) 898 842 stdio (version: v0.17.0) 899 843 stdlib (version: 5.4.0) 900 844 stdlib-shims (version: 0.3.0) ··· 902 846 str (version: 5.4.0) 903 847 stringext (version: 1.6.0) 904 848 swhid_core (version: n/a) 849 + thread-table (version: 1.0.0) 905 850 threads (version: 5.4.0) 906 851 threads.posix (version: [internal]) 907 852 time_now (version: v0.17.0) 908 853 top-closure (version: 3.21.0) 909 854 topkg (version: 1.1.1) 910 855 trie (version: n/a) 911 - typerep (version: v0.17.1) 912 856 tyxml (version: 4.6.0) 913 857 tyxml.functor (version: 4.6.0) 914 858 uchar (version: distributed with OCaml 4.03 or above) ··· 917 861 uri.services (version: 4.4.0) 918 862 uri.services_full (version: 4.4.0) 919 863 uring (version: v2.7.0) 864 + utop (version: 2.16.0) 920 865 uucp (version: 17.0.0) 921 866 uuseg (version: 17.0.0) 922 867 uuseg.string (version: 17.0.0) 923 868 uutf (version: 1.0.4) 924 - variantslib (version: v0.17.0) 869 + x-ocaml (version: n/a) 870 + x-ocaml.lib (version: 020c7bb-dirty) 871 + x-ocaml.protocol (version: 020c7bb-dirty) 925 872 xdg (version: 3.21.0) 926 873 xmlm (version: 1.4.0) 927 874 yojson (version: 3.0.0) ··· 966 913 967 914 $ unix_client exec_toplevel '' '# #require "nonexistent_package_12345";;' 968 915 {mime_vals:[];parts:[];script:S(# #require "nonexistent_package_12345";; 969 - unix_worker: [INFO] Custom #require: loading nonexistent_package_12345 970 - No such package: nonexistent_package_12345 971 - unix_worker: [INFO] Custom #require: nonexistent_package_12345 loaded)} 916 + No such package: nonexistent_package_12345)} 972 917 973 918 #use non-existent file: 974 919
-639
test/node/node_directive_test.expected
··· 148 148 node_directive_test.js: [INFO] toplevel modules: Std_exit, CamlinternalFormatBasics, CamlinternalLazy, CamlinternalMod, Stdlib, CamlinternalOO, CamlinternalFormat 149 149 node_directive_test.js: [INFO] init() finished 150 150 node_directive_test.js: [INFO] setup() for env default... 151 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=false, runtime_values_count=0) 152 151 node_directive_test.js: [INFO] Fetching stdlib__Format.cmi 153 152 154 153 node_directive_test.js: [INFO] Fetching stdlib__Sys.cmi ··· 156 155 error while evaluating #enable "pretty";; 157 156 error while evaluating #disable "shortvar";; 158 157 node_directive_test.js: [INFO] Setup complete 159 - node_directive_test.js: [INFO] [ENV] Env.diff found 92 new idents for default 160 - node_directive_test.js: [INFO] [ENV] Capturing 92 new bindings for env default 161 - >> Fatal error: Continuation_already_taken unbound at toplevel 162 - node_directive_test.js: [INFO] [ENV] could not capture Continuation_already_taken: Misc.Fatal_error 163 - >> Fatal error: Division_by_zero unbound at toplevel 164 - node_directive_test.js: [INFO] [ENV] could not capture Division_by_zero: Misc.Fatal_error 165 - >> Fatal error: Failure unbound at toplevel 166 - node_directive_test.js: [INFO] [ENV] could not capture Failure: Misc.Fatal_error 167 - >> Fatal error: Match_failure unbound at toplevel 168 - node_directive_test.js: [INFO] [ENV] could not capture Match_failure: Misc.Fatal_error 169 - >> Fatal error: Invalid_argument unbound at toplevel 170 - node_directive_test.js: [INFO] [ENV] could not capture Invalid_argument: Misc.Fatal_error 171 - >> Fatal error: End_of_file unbound at toplevel 172 - node_directive_test.js: [INFO] [ENV] could not capture End_of_file: Misc.Fatal_error 173 - >> Fatal error: Assert_failure unbound at toplevel 174 - node_directive_test.js: [INFO] [ENV] could not capture Assert_failure: Misc.Fatal_error 175 - >> Fatal error: Not_found unbound at toplevel 176 - node_directive_test.js: [INFO] [ENV] could not capture Not_found: Misc.Fatal_error 177 - >> Fatal error: Out_of_memory unbound at toplevel 178 - node_directive_test.js: [INFO] [ENV] could not capture Out_of_memory: Misc.Fatal_error 179 - >> Fatal error: Sys_blocked_io unbound at toplevel 180 - node_directive_test.js: [INFO] [ENV] could not capture Sys_blocked_io: Misc.Fatal_error 181 - >> Fatal error: Undefined_recursive_module unbound at toplevel 182 - node_directive_test.js: [INFO] [ENV] could not capture Undefined_recursive_module: Misc.Fatal_error 183 - >> Fatal error: Sys_error unbound at toplevel 184 - node_directive_test.js: [INFO] [ENV] could not capture Sys_error: Misc.Fatal_error 185 - >> Fatal error: Stack_overflow unbound at toplevel 186 - node_directive_test.js: [INFO] [ENV] could not capture Stack_overflow: Misc.Fatal_error 187 - >> Fatal error: CamlinternalFormat unbound at toplevel 188 - node_directive_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 189 - >> Fatal error: CamlinternalLazy unbound at toplevel 190 - node_directive_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 191 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 192 - node_directive_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 193 - >> Fatal error: CamlinternalOO unbound at toplevel 194 - node_directive_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 195 - >> Fatal error: Stdlib unbound at toplevel 196 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 197 - >> Fatal error: Std_exit unbound at toplevel 198 - node_directive_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 199 - >> Fatal error: CamlinternalMod unbound at toplevel 200 - node_directive_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 201 - >> Fatal error: CamlinternalFormat unbound at toplevel 202 - node_directive_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 203 - >> Fatal error: CamlinternalLazy unbound at toplevel 204 - node_directive_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 205 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 206 - node_directive_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 207 - >> Fatal error: CamlinternalOO unbound at toplevel 208 - node_directive_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 209 - >> Fatal error: Stdlib unbound at toplevel 210 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 211 - >> Fatal error: Std_exit unbound at toplevel 212 - node_directive_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 213 - >> Fatal error: CamlinternalMod unbound at toplevel 214 - node_directive_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 215 - >> Fatal error: Stdlib__Array unbound at toplevel 216 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Array: Misc.Fatal_error 217 - >> Fatal error: Stdlib__Atomic unbound at toplevel 218 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Atomic: Misc.Fatal_error 219 - >> Fatal error: Stdlib__ArrayLabels unbound at toplevel 220 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__ArrayLabels: Misc.Fatal_error 221 - >> Fatal error: Stdlib__Bool unbound at toplevel 222 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Bool: Misc.Fatal_error 223 - >> Fatal error: Stdlib__Bytes unbound at toplevel 224 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Bytes: Misc.Fatal_error 225 - >> Fatal error: Stdlib__Buffer unbound at toplevel 226 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Buffer: Misc.Fatal_error 227 - >> Fatal error: Stdlib__Bigarray unbound at toplevel 228 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Bigarray: Misc.Fatal_error 229 - >> Fatal error: Stdlib__Arg unbound at toplevel 230 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Arg: Misc.Fatal_error 231 - >> Fatal error: Stdlib__Callback unbound at toplevel 232 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Callback: Misc.Fatal_error 233 - >> Fatal error: Stdlib__Complex unbound at toplevel 234 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Complex: Misc.Fatal_error 235 - >> Fatal error: Stdlib__Char unbound at toplevel 236 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Char: Misc.Fatal_error 237 - >> Fatal error: Stdlib__Digest unbound at toplevel 238 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Digest: Misc.Fatal_error 239 - >> Fatal error: Stdlib__Dynarray unbound at toplevel 240 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Dynarray: Misc.Fatal_error 241 - >> Fatal error: Stdlib__Domain unbound at toplevel 242 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Domain: Misc.Fatal_error 243 - >> Fatal error: Stdlib__Condition unbound at toplevel 244 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Condition: Misc.Fatal_error 245 - >> Fatal error: Stdlib__Either unbound at toplevel 246 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Either: Misc.Fatal_error 247 - >> Fatal error: Stdlib__Filename unbound at toplevel 248 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Filename: Misc.Fatal_error 249 - >> Fatal error: Stdlib__Ephemeron unbound at toplevel 250 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Ephemeron: Misc.Fatal_error 251 - >> Fatal error: Stdlib__Format unbound at toplevel 252 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 253 - >> Fatal error: Stdlib__Gc unbound at toplevel 254 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Gc: Misc.Fatal_error 255 - >> Fatal error: Stdlib__Fun unbound at toplevel 256 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Fun: Misc.Fatal_error 257 - >> Fatal error: Stdlib__Float unbound at toplevel 258 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Float: Misc.Fatal_error 259 - >> Fatal error: Stdlib__Effect unbound at toplevel 260 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Effect: Misc.Fatal_error 261 - >> Fatal error: Stdlib__BytesLabels unbound at toplevel 262 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__BytesLabels: Misc.Fatal_error 263 - >> Fatal error: Stdlib__Iarray unbound at toplevel 264 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Iarray: Misc.Fatal_error 265 - >> Fatal error: Stdlib__Int unbound at toplevel 266 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Int: Misc.Fatal_error 267 - >> Fatal error: Stdlib__In_channel unbound at toplevel 268 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__In_channel: Misc.Fatal_error 269 - >> Fatal error: Stdlib__Int64 unbound at toplevel 270 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Int64: Misc.Fatal_error 271 - >> Fatal error: Stdlib__Lexing unbound at toplevel 272 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Lexing: Misc.Fatal_error 273 - >> Fatal error: Stdlib__Lazy unbound at toplevel 274 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Lazy: Misc.Fatal_error 275 - >> Fatal error: Stdlib__Int32 unbound at toplevel 276 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Int32: Misc.Fatal_error 277 - >> Fatal error: Stdlib__ListLabels unbound at toplevel 278 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__ListLabels: Misc.Fatal_error 279 - >> Fatal error: Stdlib__Marshal unbound at toplevel 280 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Marshal: Misc.Fatal_error 281 - >> Fatal error: Stdlib__Map unbound at toplevel 282 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Map: Misc.Fatal_error 283 - >> Fatal error: Stdlib__Mutex unbound at toplevel 284 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Mutex: Misc.Fatal_error 285 - >> Fatal error: Stdlib__Obj unbound at toplevel 286 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Obj: Misc.Fatal_error 287 - >> Fatal error: Stdlib__Nativeint unbound at toplevel 288 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Nativeint: Misc.Fatal_error 289 - >> Fatal error: Stdlib__MoreLabels unbound at toplevel 290 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__MoreLabels: Misc.Fatal_error 291 - >> Fatal error: Stdlib__List unbound at toplevel 292 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__List: Misc.Fatal_error 293 - >> Fatal error: Stdlib__Option unbound at toplevel 294 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Option: Misc.Fatal_error 295 - >> Fatal error: Stdlib__Pair unbound at toplevel 296 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Pair: Misc.Fatal_error 297 - >> Fatal error: Stdlib__Out_channel unbound at toplevel 298 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Out_channel: Misc.Fatal_error 299 - >> Fatal error: Stdlib__Pqueue unbound at toplevel 300 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Pqueue: Misc.Fatal_error 301 - >> Fatal error: Stdlib__Printf unbound at toplevel 302 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Printf: Misc.Fatal_error 303 - >> Fatal error: Stdlib__Printexc unbound at toplevel 304 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Printexc: Misc.Fatal_error 305 - >> Fatal error: Stdlib__Parsing unbound at toplevel 306 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Parsing: Misc.Fatal_error 307 - >> Fatal error: Stdlib__Random unbound at toplevel 308 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Random: Misc.Fatal_error 309 - >> Fatal error: Stdlib__Result unbound at toplevel 310 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Result: Misc.Fatal_error 311 - >> Fatal error: Stdlib__Repr unbound at toplevel 312 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Repr: Misc.Fatal_error 313 - >> Fatal error: Stdlib__Semaphore unbound at toplevel 314 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Semaphore: Misc.Fatal_error 315 - >> Fatal error: Stdlib__Set unbound at toplevel 316 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Set: Misc.Fatal_error 317 - >> Fatal error: Stdlib__Seq unbound at toplevel 318 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Seq: Misc.Fatal_error 319 - >> Fatal error: Stdlib__Scanf unbound at toplevel 320 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Scanf: Misc.Fatal_error 321 - >> Fatal error: Stdlib__Queue unbound at toplevel 322 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Queue: Misc.Fatal_error 323 - >> Fatal error: Stdlib__StdLabels unbound at toplevel 324 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__StdLabels: Misc.Fatal_error 325 - >> Fatal error: Stdlib__StringLabels unbound at toplevel 326 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__StringLabels: Misc.Fatal_error 327 - >> Fatal error: Stdlib__String unbound at toplevel 328 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__String: Misc.Fatal_error 329 - >> Fatal error: Stdlib__Type unbound at toplevel 330 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Type: Misc.Fatal_error 331 - >> Fatal error: Stdlib__Weak unbound at toplevel 332 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Weak: Misc.Fatal_error 333 - >> Fatal error: Stdlib__Unit unbound at toplevel 334 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Unit: Misc.Fatal_error 335 - >> Fatal error: Stdlib__Uchar unbound at toplevel 336 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Uchar: Misc.Fatal_error 337 - >> Fatal error: Stdlib__Sys unbound at toplevel 338 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 339 - >> Fatal error: Stdlib__Stack unbound at toplevel 340 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Stack: Misc.Fatal_error 341 - >> Fatal error: Stdlib__Oo unbound at toplevel 342 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Oo: Misc.Fatal_error 343 - >> Fatal error: Stdlib__Hashtbl unbound at toplevel 344 - node_directive_test.js: [INFO] [ENV] could not capture Stdlib__Hashtbl: Misc.Fatal_error 345 158 node_directive_test.js: [INFO] setup() finished for env default 346 159 --- Section 1: Basic Execution --- 347 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=0) 348 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 349 160 [PASS] basic_eval: # 1 + 2;; 350 161 - : int = 3 351 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=0) 352 - node_directive_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 353 - node_directive_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 354 - node_directive_test.js: [INFO] [ENV] captured x 355 162 [PASS] let_binding: # let x = 42;; 356 163 val x : int = 42 357 164 358 165 --- Section 2: #show Directives --- 359 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=1) 360 - node_directive_test.js: [INFO] [ENV] Restoring 1 runtime values for env default 361 - node_directive_test.js: [INFO] [ENV] setvalue x 362 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 363 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=1) 364 - node_directive_test.js: [INFO] [ENV] Restoring 1 runtime values for env default 365 - node_directive_test.js: [INFO] [ENV] setvalue x 366 - node_directive_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 367 - node_directive_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 368 - node_directive_test.js: [INFO] [ENV] captured origin 369 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=2) 370 - node_directive_test.js: [INFO] [ENV] Restoring 2 runtime values for env default 371 - node_directive_test.js: [INFO] [ENV] setvalue origin 372 - node_directive_test.js: [INFO] [ENV] setvalue x 373 - node_directive_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 374 - node_directive_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 375 - node_directive_test.js: [INFO] [ENV] captured MyMod/561 376 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=3) 377 - node_directive_test.js: [INFO] [ENV] Restoring 3 runtime values for env default 378 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 379 - node_directive_test.js: [INFO] [ENV] setvalue origin 380 - node_directive_test.js: [INFO] [ENV] setvalue x 381 - node_directive_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 382 - node_directive_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 383 - node_directive_test.js: [INFO] [ENV] captured My_error/562 384 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=4) 385 - node_directive_test.js: [INFO] [ENV] Restoring 4 runtime values for env default 386 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 387 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 388 - node_directive_test.js: [INFO] [ENV] setvalue origin 389 - node_directive_test.js: [INFO] [ENV] setvalue x 390 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 391 166 [PASS] show_type_point: # #show point;; 392 167 type point = { x : float; y : float; } 393 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=4) 394 - node_directive_test.js: [INFO] [ENV] Restoring 4 runtime values for env default 395 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 396 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 397 - node_directive_test.js: [INFO] [ENV] setvalue origin 398 - node_directive_test.js: [INFO] [ENV] setvalue x 399 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 400 168 [PASS] show_val_origin: # #show origin;; 401 169 val origin : point 402 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=4) 403 - node_directive_test.js: [INFO] [ENV] Restoring 4 runtime values for env default 404 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 405 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 406 - node_directive_test.js: [INFO] [ENV] setvalue origin 407 - node_directive_test.js: [INFO] [ENV] setvalue x 408 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 409 170 [PASS] show_module: # #show MyMod;; 410 171 module MyMod : sig type t = int val zero : int end 411 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=4) 412 - node_directive_test.js: [INFO] [ENV] Restoring 4 runtime values for env default 413 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 414 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 415 - node_directive_test.js: [INFO] [ENV] setvalue origin 416 - node_directive_test.js: [INFO] [ENV] setvalue x 417 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 418 172 [PASS] show_exception: # #show My_error;; 419 173 exception My_error of string 420 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=4) 421 - node_directive_test.js: [INFO] [ENV] Restoring 4 runtime values for env default 422 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 423 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 424 - node_directive_test.js: [INFO] [ENV] setvalue origin 425 - node_directive_test.js: [INFO] [ENV] setvalue x 426 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 427 174 [PASS] show_type_list: # #show_type list;; 428 175 type 'a list = [] | (::) of 'a * 'a list 429 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=4) 430 - node_directive_test.js: [INFO] [ENV] Restoring 4 runtime values for env default 431 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 432 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 433 - node_directive_test.js: [INFO] [ENV] setvalue origin 434 - node_directive_test.js: [INFO] [ENV] setvalue x 435 176 node_directive_test.js: [INFO] Fetching stdlib__List.cmi 436 177 437 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 438 178 [PASS] show_val_list_map: # #show_val List.map;; 439 179 val map : ('a -> 'b) -> 'a list -> 'b list 440 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=4) 441 - node_directive_test.js: [INFO] [ENV] Restoring 4 runtime values for env default 442 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 443 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 444 - node_directive_test.js: [INFO] [ENV] setvalue origin 445 - node_directive_test.js: [INFO] [ENV] setvalue x 446 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 447 180 [PASS] show_module_list: # #show_module List;; 448 181 module List : 449 182 sig ··· 523 256 val to_seq : 'a list -> 'a Seq.t 524 257 val of_seq : 'a Seq.t -> 'a list 525 258 end 526 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=4) 527 - node_directive_test.js: [INFO] [ENV] Restoring 4 runtime values for env default 528 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 529 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 530 - node_directive_test.js: [INFO] [ENV] setvalue origin 531 - node_directive_test.js: [INFO] [ENV] setvalue x 532 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 533 259 [PASS] show_exception_not_found: # #show_exception Not_found;; 534 260 exception Not_found 535 261 536 262 --- Section 3: #print_depth and #print_length --- 537 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=4) 538 - node_directive_test.js: [INFO] [ENV] Restoring 4 runtime values for env default 539 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 540 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 541 - node_directive_test.js: [INFO] [ENV] setvalue origin 542 - node_directive_test.js: [INFO] [ENV] setvalue x 543 - node_directive_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 544 - node_directive_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 545 - node_directive_test.js: [INFO] [ENV] captured nested 546 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=5) 547 - node_directive_test.js: [INFO] [ENV] Restoring 5 runtime values for env default 548 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 549 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 550 - node_directive_test.js: [INFO] [ENV] setvalue nested 551 - node_directive_test.js: [INFO] [ENV] setvalue origin 552 - node_directive_test.js: [INFO] [ENV] setvalue x 553 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 554 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=5) 555 - node_directive_test.js: [INFO] [ENV] Restoring 5 runtime values for env default 556 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 557 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 558 - node_directive_test.js: [INFO] [ENV] setvalue nested 559 - node_directive_test.js: [INFO] [ENV] setvalue origin 560 - node_directive_test.js: [INFO] [ENV] setvalue x 561 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 562 263 [PASS] print_depth_truncated: # nested;; 563 264 - : int list list list list = [[[...]]] 564 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=5) 565 - node_directive_test.js: [INFO] [ENV] Restoring 5 runtime values for env default 566 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 567 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 568 - node_directive_test.js: [INFO] [ENV] setvalue nested 569 - node_directive_test.js: [INFO] [ENV] setvalue origin 570 - node_directive_test.js: [INFO] [ENV] setvalue x 571 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 572 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=5) 573 - node_directive_test.js: [INFO] [ENV] Restoring 5 runtime values for env default 574 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 575 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 576 - node_directive_test.js: [INFO] [ENV] setvalue nested 577 - node_directive_test.js: [INFO] [ENV] setvalue origin 578 - node_directive_test.js: [INFO] [ENV] setvalue x 579 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 580 265 [PASS] print_depth_full: # nested;; 581 266 - : int list list list list = [[[[1; 2; 3]]]] 582 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=5) 583 - node_directive_test.js: [INFO] [ENV] Restoring 5 runtime values for env default 584 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 585 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 586 - node_directive_test.js: [INFO] [ENV] setvalue nested 587 - node_directive_test.js: [INFO] [ENV] setvalue origin 588 - node_directive_test.js: [INFO] [ENV] setvalue x 589 - node_directive_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 590 - node_directive_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 591 - node_directive_test.js: [INFO] [ENV] captured long_list 592 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=6) 593 - node_directive_test.js: [INFO] [ENV] Restoring 6 runtime values for env default 594 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 595 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 596 - node_directive_test.js: [INFO] [ENV] setvalue long_list 597 - node_directive_test.js: [INFO] [ENV] setvalue nested 598 - node_directive_test.js: [INFO] [ENV] setvalue origin 599 - node_directive_test.js: [INFO] [ENV] setvalue x 600 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 601 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=6) 602 - node_directive_test.js: [INFO] [ENV] Restoring 6 runtime values for env default 603 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 604 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 605 - node_directive_test.js: [INFO] [ENV] setvalue long_list 606 - node_directive_test.js: [INFO] [ENV] setvalue nested 607 - node_directive_test.js: [INFO] [ENV] setvalue origin 608 - node_directive_test.js: [INFO] [ENV] setvalue x 609 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 610 267 [PASS] print_length_truncated: # long_list;; 611 268 - : int list = [1; 2; ...] 612 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=6) 613 - node_directive_test.js: [INFO] [ENV] Restoring 6 runtime values for env default 614 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 615 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 616 - node_directive_test.js: [INFO] [ENV] setvalue long_list 617 - node_directive_test.js: [INFO] [ENV] setvalue nested 618 - node_directive_test.js: [INFO] [ENV] setvalue origin 619 - node_directive_test.js: [INFO] [ENV] setvalue x 620 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 621 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=6) 622 - node_directive_test.js: [INFO] [ENV] Restoring 6 runtime values for env default 623 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 624 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 625 - node_directive_test.js: [INFO] [ENV] setvalue long_list 626 - node_directive_test.js: [INFO] [ENV] setvalue nested 627 - node_directive_test.js: [INFO] [ENV] setvalue origin 628 - node_directive_test.js: [INFO] [ENV] setvalue x 629 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 630 269 [PASS] print_length_full: # long_list;; 631 270 - : int list = [1; 2; 3; 4; 5; 6; 7; 8; 9; 10] 632 271 633 272 --- Section 4: #install_printer / #remove_printer --- 634 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=6) 635 - node_directive_test.js: [INFO] [ENV] Restoring 6 runtime values for env default 636 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 637 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 638 - node_directive_test.js: [INFO] [ENV] setvalue long_list 639 - node_directive_test.js: [INFO] [ENV] setvalue nested 640 - node_directive_test.js: [INFO] [ENV] setvalue origin 641 - node_directive_test.js: [INFO] [ENV] setvalue x 642 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 643 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=6) 644 - node_directive_test.js: [INFO] [ENV] Restoring 6 runtime values for env default 645 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 646 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 647 - node_directive_test.js: [INFO] [ENV] setvalue long_list 648 - node_directive_test.js: [INFO] [ENV] setvalue nested 649 - node_directive_test.js: [INFO] [ENV] setvalue origin 650 - node_directive_test.js: [INFO] [ENV] setvalue x 651 - node_directive_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 652 - node_directive_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 653 - node_directive_test.js: [INFO] [ENV] captured pp_color 654 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 655 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 656 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 657 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 658 - node_directive_test.js: [INFO] [ENV] setvalue long_list 659 - node_directive_test.js: [INFO] [ENV] setvalue nested 660 - node_directive_test.js: [INFO] [ENV] setvalue origin 661 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 662 - node_directive_test.js: [INFO] [ENV] setvalue x 663 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 664 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 665 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 666 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 667 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 668 - node_directive_test.js: [INFO] [ENV] setvalue long_list 669 - node_directive_test.js: [INFO] [ENV] setvalue nested 670 - node_directive_test.js: [INFO] [ENV] setvalue origin 671 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 672 - node_directive_test.js: [INFO] [ENV] setvalue x 673 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 674 273 [PASS] install_printer: # Red;; 675 274 - : color = <color:red> 676 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 677 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 678 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 679 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 680 - node_directive_test.js: [INFO] [ENV] setvalue long_list 681 - node_directive_test.js: [INFO] [ENV] setvalue nested 682 - node_directive_test.js: [INFO] [ENV] setvalue origin 683 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 684 - node_directive_test.js: [INFO] [ENV] setvalue x 685 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 686 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 687 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 688 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 689 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 690 - node_directive_test.js: [INFO] [ENV] setvalue long_list 691 - node_directive_test.js: [INFO] [ENV] setvalue nested 692 - node_directive_test.js: [INFO] [ENV] setvalue origin 693 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 694 - node_directive_test.js: [INFO] [ENV] setvalue x 695 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 696 275 [PASS] remove_printer: # Red;; 697 276 - : color = Red 698 277 699 278 --- Section 5: #warnings / #warn_error --- 700 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 701 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 702 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 703 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 704 - node_directive_test.js: [INFO] [ENV] setvalue long_list 705 - node_directive_test.js: [INFO] [ENV] setvalue nested 706 - node_directive_test.js: [INFO] [ENV] setvalue origin 707 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 708 - node_directive_test.js: [INFO] [ENV] setvalue x 709 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 710 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 711 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 712 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 713 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 714 - node_directive_test.js: [INFO] [ENV] setvalue long_list 715 - node_directive_test.js: [INFO] [ENV] setvalue nested 716 - node_directive_test.js: [INFO] [ENV] setvalue origin 717 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 718 - node_directive_test.js: [INFO] [ENV] setvalue x 719 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 720 279 [PASS] warnings_disabled: # let _ = let unused = 1 in 2;; 721 280 - : int = 2 722 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 723 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 724 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 725 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 726 - node_directive_test.js: [INFO] [ENV] setvalue long_list 727 - node_directive_test.js: [INFO] [ENV] setvalue nested 728 - node_directive_test.js: [INFO] [ENV] setvalue origin 729 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 730 - node_directive_test.js: [INFO] [ENV] setvalue x 731 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 732 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 733 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 734 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 735 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 736 - node_directive_test.js: [INFO] [ENV] setvalue long_list 737 - node_directive_test.js: [INFO] [ENV] setvalue nested 738 - node_directive_test.js: [INFO] [ENV] setvalue origin 739 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 740 - node_directive_test.js: [INFO] [ENV] setvalue x 741 281 Line 1, characters 12-19: 742 282 Warning 26 [unused-var]: unused variable unused2. 743 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 744 283 [PASS] warnings_enabled: # let _ = let unused2 = 1 in 2;; 745 284 - : int = 2 746 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 747 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 748 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 749 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 750 - node_directive_test.js: [INFO] [ENV] setvalue long_list 751 - node_directive_test.js: [INFO] [ENV] setvalue nested 752 - node_directive_test.js: [INFO] [ENV] setvalue origin 753 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 754 - node_directive_test.js: [INFO] [ENV] setvalue x 755 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 756 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 757 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 758 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 759 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 760 - node_directive_test.js: [INFO] [ENV] setvalue long_list 761 - node_directive_test.js: [INFO] [ENV] setvalue nested 762 - node_directive_test.js: [INFO] [ENV] setvalue origin 763 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 764 - node_directive_test.js: [INFO] [ENV] setvalue x 765 285 766 286 Line 1, characters 12-19: 767 287 Error (warning 26 [unused-var]): unused variable unused3. 768 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 769 288 [FAIL] warn_error: # let _ = let unused3 = 1 in 2;; 770 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 771 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 772 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 773 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 774 - node_directive_test.js: [INFO] [ENV] setvalue long_list 775 - node_directive_test.js: [INFO] [ENV] setvalue nested 776 - node_directive_test.js: [INFO] [ENV] setvalue origin 777 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 778 - node_directive_test.js: [INFO] [ENV] setvalue x 779 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 780 289 781 290 --- Section 6: #rectypes --- 782 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 783 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 784 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 785 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 786 - node_directive_test.js: [INFO] [ENV] setvalue long_list 787 - node_directive_test.js: [INFO] [ENV] setvalue nested 788 - node_directive_test.js: [INFO] [ENV] setvalue origin 789 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 790 - node_directive_test.js: [INFO] [ENV] setvalue x 791 291 792 292 Line 1, characters 0-23: 793 293 Error: The type abbreviation t is cyclic: 794 294 'a t = 'a t -> int, 795 295 'a t -> int contains 'a t 796 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 797 296 [FAIL] rectypes_before: # type 'a t = 'a t -> int;; 798 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 799 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 800 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 801 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 802 - node_directive_test.js: [INFO] [ENV] setvalue long_list 803 - node_directive_test.js: [INFO] [ENV] setvalue nested 804 - node_directive_test.js: [INFO] [ENV] setvalue origin 805 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 806 - node_directive_test.js: [INFO] [ENV] setvalue x 807 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 808 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 809 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 810 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 811 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 812 - node_directive_test.js: [INFO] [ENV] setvalue long_list 813 - node_directive_test.js: [INFO] [ENV] setvalue nested 814 - node_directive_test.js: [INFO] [ENV] setvalue origin 815 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 816 - node_directive_test.js: [INFO] [ENV] setvalue x 817 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 818 297 [PASS] rectypes_after: # type 'a u = 'a u -> int;; 819 298 type 'a u = 'a u -> int 820 299 821 300 --- Section 7: #directory --- 822 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 823 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 824 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 825 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 826 - node_directive_test.js: [INFO] [ENV] setvalue long_list 827 - node_directive_test.js: [INFO] [ENV] setvalue nested 828 - node_directive_test.js: [INFO] [ENV] setvalue origin 829 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 830 - node_directive_test.js: [INFO] [ENV] setvalue x 831 - node_directive_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 832 - node_directive_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 833 - >> Fatal error: Test_ocamlfind unbound at toplevel 834 - node_directive_test.js: [INFO] [ENV] could not capture Test_ocamlfind: Misc.Fatal_error 835 301 [PASS] directory_add: (no error) 836 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 837 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 838 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 839 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 840 - node_directive_test.js: [INFO] [ENV] setvalue long_list 841 - node_directive_test.js: [INFO] [ENV] setvalue nested 842 - node_directive_test.js: [INFO] [ENV] setvalue origin 843 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 844 - node_directive_test.js: [INFO] [ENV] setvalue x 845 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 846 302 [PASS] directory_remove: (no error) 847 303 848 304 --- Section 8: #help --- 849 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 850 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 851 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 852 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 853 - node_directive_test.js: [INFO] [ENV] setvalue long_list 854 - node_directive_test.js: [INFO] [ENV] setvalue nested 855 - node_directive_test.js: [INFO] [ENV] setvalue origin 856 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 857 - node_directive_test.js: [INFO] [ENV] setvalue x 858 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 859 305 [PASS] help: # #help;; 860 306 General 861 307 #help 862 308 Prints a list of all available directives, with corresponding argume... 863 309 864 310 --- Section 9: #labels / #principal --- 865 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 866 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 867 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 868 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 869 - node_directive_test.js: [INFO] [ENV] setvalue long_list 870 - node_directive_test.js: [INFO] [ENV] setvalue nested 871 - node_directive_test.js: [INFO] [ENV] setvalue origin 872 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 873 - node_directive_test.js: [INFO] [ENV] setvalue x 874 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 875 311 [PASS] labels_true: (no error) 876 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 877 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 878 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 879 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 880 - node_directive_test.js: [INFO] [ENV] setvalue long_list 881 - node_directive_test.js: [INFO] [ENV] setvalue nested 882 - node_directive_test.js: [INFO] [ENV] setvalue origin 883 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 884 - node_directive_test.js: [INFO] [ENV] setvalue x 885 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 886 312 [PASS] labels_false: (no error) 887 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 888 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 889 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 890 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 891 - node_directive_test.js: [INFO] [ENV] setvalue long_list 892 - node_directive_test.js: [INFO] [ENV] setvalue nested 893 - node_directive_test.js: [INFO] [ENV] setvalue origin 894 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 895 - node_directive_test.js: [INFO] [ENV] setvalue x 896 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 897 313 [PASS] principal_true: (no error) 898 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 899 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 900 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 901 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 902 - node_directive_test.js: [INFO] [ENV] setvalue long_list 903 - node_directive_test.js: [INFO] [ENV] setvalue nested 904 - node_directive_test.js: [INFO] [ENV] setvalue origin 905 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 906 - node_directive_test.js: [INFO] [ENV] setvalue x 907 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 908 314 [PASS] principal_false: (no error) 909 315 910 316 --- Section 10: Error Cases --- 911 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 912 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 913 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 914 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 915 - node_directive_test.js: [INFO] [ENV] setvalue long_list 916 - node_directive_test.js: [INFO] [ENV] setvalue nested 917 - node_directive_test.js: [INFO] [ENV] setvalue origin 918 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 919 - node_directive_test.js: [INFO] [ENV] setvalue x 920 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 921 317 [PASS] unknown_directive: # #unknown_directive;; 922 318 Unknown directive unknown_directive. 923 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 924 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 925 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 926 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 927 - node_directive_test.js: [INFO] [ENV] setvalue long_list 928 - node_directive_test.js: [INFO] [ENV] setvalue nested 929 - node_directive_test.js: [INFO] [ENV] setvalue origin 930 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 931 - node_directive_test.js: [INFO] [ENV] setvalue x 932 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 933 319 [PASS] show_nonexistent: # #show nonexistent_value;; 934 320 Unknown element. 935 321 936 322 --- Section 11: Classes --- 937 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=7) 938 - node_directive_test.js: [INFO] [ENV] Restoring 7 runtime values for env default 939 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 940 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 941 - node_directive_test.js: [INFO] [ENV] setvalue long_list 942 - node_directive_test.js: [INFO] [ENV] setvalue nested 943 - node_directive_test.js: [INFO] [ENV] setvalue origin 944 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 945 - node_directive_test.js: [INFO] [ENV] setvalue x 946 - node_directive_test.js: [INFO] [ENV] Env.diff found 3 new idents for default 947 - node_directive_test.js: [INFO] [ENV] Capturing 3 new bindings for env default 948 - node_directive_test.js: [INFO] [ENV] captured counter/816 949 - node_directive_test.js: [INFO] [ENV] captured counter/816 950 - node_directive_test.js: [INFO] [ENV] captured counter/816 951 - node_directive_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=8) 952 - node_directive_test.js: [INFO] [ENV] Restoring 8 runtime values for env default 953 - node_directive_test.js: [INFO] [ENV] setvalue MyMod/561 954 - node_directive_test.js: [INFO] [ENV] setvalue My_error/562 955 - node_directive_test.js: [INFO] [ENV] setvalue counter/816 956 - node_directive_test.js: [INFO] [ENV] setvalue long_list 957 - node_directive_test.js: [INFO] [ENV] setvalue nested 958 - node_directive_test.js: [INFO] [ENV] setvalue origin 959 - node_directive_test.js: [INFO] [ENV] setvalue pp_color 960 - node_directive_test.js: [INFO] [ENV] setvalue x 961 - node_directive_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 962 323 [PASS] show_class: # #show_class counter;; 963 324 class counter : 964 325 object val mutable n : int method get : int method incr : unit end
-906
test/node/node_env_test.expected
··· 149 149 node_env_test.js: [INFO] init() finished 150 150 --- Section 1: Default Environment --- 151 151 node_env_test.js: [INFO] setup() for env default... 152 - node_env_test.js: [INFO] [ENV] with_env called for default (has_saved_env=false, runtime_values_count=0) 153 152 node_env_test.js: [INFO] Fetching stdlib__Format.cmi 154 153 155 154 node_env_test.js: [INFO] Fetching stdlib__Sys.cmi ··· 157 156 error while evaluating #enable "pretty";; 158 157 error while evaluating #disable "shortvar";; 159 158 node_env_test.js: [INFO] Setup complete 160 - node_env_test.js: [INFO] [ENV] Env.diff found 92 new idents for default 161 - node_env_test.js: [INFO] [ENV] Capturing 92 new bindings for env default 162 - >> Fatal error: Continuation_already_taken unbound at toplevel 163 - node_env_test.js: [INFO] [ENV] could not capture Continuation_already_taken: Misc.Fatal_error 164 - >> Fatal error: Division_by_zero unbound at toplevel 165 - node_env_test.js: [INFO] [ENV] could not capture Division_by_zero: Misc.Fatal_error 166 - >> Fatal error: Failure unbound at toplevel 167 - node_env_test.js: [INFO] [ENV] could not capture Failure: Misc.Fatal_error 168 - >> Fatal error: Match_failure unbound at toplevel 169 - node_env_test.js: [INFO] [ENV] could not capture Match_failure: Misc.Fatal_error 170 - >> Fatal error: Invalid_argument unbound at toplevel 171 - node_env_test.js: [INFO] [ENV] could not capture Invalid_argument: Misc.Fatal_error 172 - >> Fatal error: End_of_file unbound at toplevel 173 - node_env_test.js: [INFO] [ENV] could not capture End_of_file: Misc.Fatal_error 174 - >> Fatal error: Assert_failure unbound at toplevel 175 - node_env_test.js: [INFO] [ENV] could not capture Assert_failure: Misc.Fatal_error 176 - >> Fatal error: Not_found unbound at toplevel 177 - node_env_test.js: [INFO] [ENV] could not capture Not_found: Misc.Fatal_error 178 - >> Fatal error: Out_of_memory unbound at toplevel 179 - node_env_test.js: [INFO] [ENV] could not capture Out_of_memory: Misc.Fatal_error 180 - >> Fatal error: Sys_blocked_io unbound at toplevel 181 - node_env_test.js: [INFO] [ENV] could not capture Sys_blocked_io: Misc.Fatal_error 182 - >> Fatal error: Undefined_recursive_module unbound at toplevel 183 - node_env_test.js: [INFO] [ENV] could not capture Undefined_recursive_module: Misc.Fatal_error 184 - >> Fatal error: Sys_error unbound at toplevel 185 - node_env_test.js: [INFO] [ENV] could not capture Sys_error: Misc.Fatal_error 186 - >> Fatal error: Stack_overflow unbound at toplevel 187 - node_env_test.js: [INFO] [ENV] could not capture Stack_overflow: Misc.Fatal_error 188 - >> Fatal error: CamlinternalFormat unbound at toplevel 189 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 190 - >> Fatal error: CamlinternalLazy unbound at toplevel 191 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 192 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 193 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 194 - >> Fatal error: CamlinternalOO unbound at toplevel 195 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 196 - >> Fatal error: Stdlib unbound at toplevel 197 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 198 - >> Fatal error: Std_exit unbound at toplevel 199 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 200 - >> Fatal error: CamlinternalMod unbound at toplevel 201 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 202 - >> Fatal error: CamlinternalFormat unbound at toplevel 203 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 204 - >> Fatal error: CamlinternalLazy unbound at toplevel 205 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 206 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 207 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 208 - >> Fatal error: CamlinternalOO unbound at toplevel 209 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 210 - >> Fatal error: Stdlib unbound at toplevel 211 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 212 - >> Fatal error: Std_exit unbound at toplevel 213 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 214 - >> Fatal error: CamlinternalMod unbound at toplevel 215 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 216 - >> Fatal error: Stdlib__Array unbound at toplevel 217 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Array: Misc.Fatal_error 218 - >> Fatal error: Stdlib__Atomic unbound at toplevel 219 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Atomic: Misc.Fatal_error 220 - >> Fatal error: Stdlib__ArrayLabels unbound at toplevel 221 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__ArrayLabels: Misc.Fatal_error 222 - >> Fatal error: Stdlib__Bool unbound at toplevel 223 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bool: Misc.Fatal_error 224 - >> Fatal error: Stdlib__Bytes unbound at toplevel 225 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bytes: Misc.Fatal_error 226 - >> Fatal error: Stdlib__Buffer unbound at toplevel 227 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Buffer: Misc.Fatal_error 228 - >> Fatal error: Stdlib__Bigarray unbound at toplevel 229 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bigarray: Misc.Fatal_error 230 - >> Fatal error: Stdlib__Arg unbound at toplevel 231 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Arg: Misc.Fatal_error 232 - >> Fatal error: Stdlib__Callback unbound at toplevel 233 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Callback: Misc.Fatal_error 234 - >> Fatal error: Stdlib__Complex unbound at toplevel 235 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Complex: Misc.Fatal_error 236 - >> Fatal error: Stdlib__Char unbound at toplevel 237 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Char: Misc.Fatal_error 238 - >> Fatal error: Stdlib__Digest unbound at toplevel 239 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Digest: Misc.Fatal_error 240 - >> Fatal error: Stdlib__Dynarray unbound at toplevel 241 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Dynarray: Misc.Fatal_error 242 - >> Fatal error: Stdlib__Domain unbound at toplevel 243 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Domain: Misc.Fatal_error 244 - >> Fatal error: Stdlib__Condition unbound at toplevel 245 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Condition: Misc.Fatal_error 246 - >> Fatal error: Stdlib__Either unbound at toplevel 247 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Either: Misc.Fatal_error 248 - >> Fatal error: Stdlib__Filename unbound at toplevel 249 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Filename: Misc.Fatal_error 250 - >> Fatal error: Stdlib__Ephemeron unbound at toplevel 251 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Ephemeron: Misc.Fatal_error 252 - >> Fatal error: Stdlib__Format unbound at toplevel 253 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 254 - >> Fatal error: Stdlib__Gc unbound at toplevel 255 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Gc: Misc.Fatal_error 256 - >> Fatal error: Stdlib__Fun unbound at toplevel 257 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Fun: Misc.Fatal_error 258 - >> Fatal error: Stdlib__Float unbound at toplevel 259 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Float: Misc.Fatal_error 260 - >> Fatal error: Stdlib__Effect unbound at toplevel 261 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Effect: Misc.Fatal_error 262 - >> Fatal error: Stdlib__BytesLabels unbound at toplevel 263 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__BytesLabels: Misc.Fatal_error 264 - >> Fatal error: Stdlib__Iarray unbound at toplevel 265 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Iarray: Misc.Fatal_error 266 - >> Fatal error: Stdlib__Int unbound at toplevel 267 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int: Misc.Fatal_error 268 - >> Fatal error: Stdlib__In_channel unbound at toplevel 269 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__In_channel: Misc.Fatal_error 270 - >> Fatal error: Stdlib__Int64 unbound at toplevel 271 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int64: Misc.Fatal_error 272 - >> Fatal error: Stdlib__Lexing unbound at toplevel 273 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Lexing: Misc.Fatal_error 274 - >> Fatal error: Stdlib__Lazy unbound at toplevel 275 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Lazy: Misc.Fatal_error 276 - >> Fatal error: Stdlib__Int32 unbound at toplevel 277 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int32: Misc.Fatal_error 278 - >> Fatal error: Stdlib__ListLabels unbound at toplevel 279 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__ListLabels: Misc.Fatal_error 280 - >> Fatal error: Stdlib__Marshal unbound at toplevel 281 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Marshal: Misc.Fatal_error 282 - >> Fatal error: Stdlib__Map unbound at toplevel 283 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Map: Misc.Fatal_error 284 - >> Fatal error: Stdlib__Mutex unbound at toplevel 285 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Mutex: Misc.Fatal_error 286 - >> Fatal error: Stdlib__Obj unbound at toplevel 287 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Obj: Misc.Fatal_error 288 - >> Fatal error: Stdlib__Nativeint unbound at toplevel 289 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Nativeint: Misc.Fatal_error 290 - >> Fatal error: Stdlib__MoreLabels unbound at toplevel 291 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__MoreLabels: Misc.Fatal_error 292 - >> Fatal error: Stdlib__List unbound at toplevel 293 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__List: Misc.Fatal_error 294 - >> Fatal error: Stdlib__Option unbound at toplevel 295 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Option: Misc.Fatal_error 296 - >> Fatal error: Stdlib__Pair unbound at toplevel 297 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Pair: Misc.Fatal_error 298 - >> Fatal error: Stdlib__Out_channel unbound at toplevel 299 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Out_channel: Misc.Fatal_error 300 - >> Fatal error: Stdlib__Pqueue unbound at toplevel 301 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Pqueue: Misc.Fatal_error 302 - >> Fatal error: Stdlib__Printf unbound at toplevel 303 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Printf: Misc.Fatal_error 304 - >> Fatal error: Stdlib__Printexc unbound at toplevel 305 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Printexc: Misc.Fatal_error 306 - >> Fatal error: Stdlib__Parsing unbound at toplevel 307 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Parsing: Misc.Fatal_error 308 - >> Fatal error: Stdlib__Random unbound at toplevel 309 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Random: Misc.Fatal_error 310 - >> Fatal error: Stdlib__Result unbound at toplevel 311 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Result: Misc.Fatal_error 312 - >> Fatal error: Stdlib__Repr unbound at toplevel 313 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Repr: Misc.Fatal_error 314 - >> Fatal error: Stdlib__Semaphore unbound at toplevel 315 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Semaphore: Misc.Fatal_error 316 - >> Fatal error: Stdlib__Set unbound at toplevel 317 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Set: Misc.Fatal_error 318 - >> Fatal error: Stdlib__Seq unbound at toplevel 319 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Seq: Misc.Fatal_error 320 - >> Fatal error: Stdlib__Scanf unbound at toplevel 321 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Scanf: Misc.Fatal_error 322 - >> Fatal error: Stdlib__Queue unbound at toplevel 323 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Queue: Misc.Fatal_error 324 - >> Fatal error: Stdlib__StdLabels unbound at toplevel 325 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__StdLabels: Misc.Fatal_error 326 - >> Fatal error: Stdlib__StringLabels unbound at toplevel 327 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__StringLabels: Misc.Fatal_error 328 - >> Fatal error: Stdlib__String unbound at toplevel 329 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__String: Misc.Fatal_error 330 - >> Fatal error: Stdlib__Type unbound at toplevel 331 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Type: Misc.Fatal_error 332 - >> Fatal error: Stdlib__Weak unbound at toplevel 333 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Weak: Misc.Fatal_error 334 - >> Fatal error: Stdlib__Unit unbound at toplevel 335 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Unit: Misc.Fatal_error 336 - >> Fatal error: Stdlib__Uchar unbound at toplevel 337 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Uchar: Misc.Fatal_error 338 - >> Fatal error: Stdlib__Sys unbound at toplevel 339 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 340 - >> Fatal error: Stdlib__Stack unbound at toplevel 341 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Stack: Misc.Fatal_error 342 - >> Fatal error: Stdlib__Oo unbound at toplevel 343 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Oo: Misc.Fatal_error 344 - >> Fatal error: Stdlib__Hashtbl unbound at toplevel 345 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Hashtbl: Misc.Fatal_error 346 159 node_env_test.js: [INFO] setup() finished for env default 347 160 [PASS] default_setup: Default environment setup 348 - node_env_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=0) 349 - node_env_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 350 - node_env_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 351 - node_env_test.js: [INFO] [ENV] captured default_val 352 161 [PASS] default_define: # let default_val = 42;; 353 162 val default_val : int = 42 354 163 ··· 356 165 node_env_test.js: [INFO] create_env(env1) 357 166 [PASS] create_env1: Created environment env1 358 167 node_env_test.js: [INFO] setup() for env env1... 359 - node_env_test.js: [INFO] [ENV] with_env called for env1 (has_saved_env=false, runtime_values_count=0) 360 168 error while evaluating #enable "pretty";; 361 169 error while evaluating #disable "shortvar";; 362 170 node_env_test.js: [INFO] Setup complete 363 - node_env_test.js: [INFO] [ENV] Env.diff found 103 new idents for env1 364 - node_env_test.js: [INFO] [ENV] Capturing 103 new bindings for env env1 365 - >> Fatal error: Continuation_already_taken unbound at toplevel 366 - node_env_test.js: [INFO] [ENV] could not capture Continuation_already_taken: Misc.Fatal_error 367 - >> Fatal error: Division_by_zero unbound at toplevel 368 - node_env_test.js: [INFO] [ENV] could not capture Division_by_zero: Misc.Fatal_error 369 - >> Fatal error: Failure unbound at toplevel 370 - node_env_test.js: [INFO] [ENV] could not capture Failure: Misc.Fatal_error 371 - >> Fatal error: Match_failure unbound at toplevel 372 - node_env_test.js: [INFO] [ENV] could not capture Match_failure: Misc.Fatal_error 373 - >> Fatal error: Invalid_argument unbound at toplevel 374 - node_env_test.js: [INFO] [ENV] could not capture Invalid_argument: Misc.Fatal_error 375 - >> Fatal error: End_of_file unbound at toplevel 376 - node_env_test.js: [INFO] [ENV] could not capture End_of_file: Misc.Fatal_error 377 - >> Fatal error: Assert_failure unbound at toplevel 378 - node_env_test.js: [INFO] [ENV] could not capture Assert_failure: Misc.Fatal_error 379 - >> Fatal error: Not_found unbound at toplevel 380 - node_env_test.js: [INFO] [ENV] could not capture Not_found: Misc.Fatal_error 381 - >> Fatal error: Out_of_memory unbound at toplevel 382 - node_env_test.js: [INFO] [ENV] could not capture Out_of_memory: Misc.Fatal_error 383 - >> Fatal error: Sys_blocked_io unbound at toplevel 384 - node_env_test.js: [INFO] [ENV] could not capture Sys_blocked_io: Misc.Fatal_error 385 - >> Fatal error: Undefined_recursive_module unbound at toplevel 386 - node_env_test.js: [INFO] [ENV] could not capture Undefined_recursive_module: Misc.Fatal_error 387 - >> Fatal error: Sys_error unbound at toplevel 388 - node_env_test.js: [INFO] [ENV] could not capture Sys_error: Misc.Fatal_error 389 - >> Fatal error: Stack_overflow unbound at toplevel 390 - node_env_test.js: [INFO] [ENV] could not capture Stack_overflow: Misc.Fatal_error 391 - >> Fatal error: CamlinternalFormat unbound at toplevel 392 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 393 - >> Fatal error: CamlinternalLazy unbound at toplevel 394 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 395 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 396 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 397 - >> Fatal error: CamlinternalOO unbound at toplevel 398 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 399 - >> Fatal error: Stdlib unbound at toplevel 400 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 401 - >> Fatal error: Stdlib__Sys unbound at toplevel 402 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 403 - >> Fatal error: Stdlib__Format unbound at toplevel 404 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 405 - >> Fatal error: Std_exit unbound at toplevel 406 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 407 - >> Fatal error: CamlinternalMod unbound at toplevel 408 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 409 - >> Fatal error: CamlinternalFormat unbound at toplevel 410 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 411 - >> Fatal error: CamlinternalFormat unbound at toplevel 412 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 413 - >> Fatal error: CamlinternalLazy unbound at toplevel 414 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 415 - >> Fatal error: CamlinternalLazy unbound at toplevel 416 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 417 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 418 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 419 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 420 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 421 - >> Fatal error: CamlinternalOO unbound at toplevel 422 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 423 - >> Fatal error: CamlinternalOO unbound at toplevel 424 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 425 - >> Fatal error: Std_exit unbound at toplevel 426 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 427 - >> Fatal error: Std_exit unbound at toplevel 428 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 429 - >> Fatal error: CamlinternalMod unbound at toplevel 430 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 431 - >> Fatal error: CamlinternalMod unbound at toplevel 432 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 433 - >> Fatal error: Stdlib__Arg unbound at toplevel 434 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Arg: Misc.Fatal_error 435 - >> Fatal error: Stdlib__Array unbound at toplevel 436 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Array: Misc.Fatal_error 437 - >> Fatal error: Stdlib__Atomic unbound at toplevel 438 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Atomic: Misc.Fatal_error 439 - >> Fatal error: Stdlib__Bigarray unbound at toplevel 440 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bigarray: Misc.Fatal_error 441 - >> Fatal error: Stdlib__ArrayLabels unbound at toplevel 442 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__ArrayLabels: Misc.Fatal_error 443 - >> Fatal error: Stdlib unbound at toplevel 444 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 445 - >> Fatal error: Stdlib unbound at toplevel 446 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 447 - >> Fatal error: Stdlib__Buffer unbound at toplevel 448 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Buffer: Misc.Fatal_error 449 - >> Fatal error: Stdlib__Bytes unbound at toplevel 450 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bytes: Misc.Fatal_error 451 - >> Fatal error: Stdlib__Callback unbound at toplevel 452 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Callback: Misc.Fatal_error 453 - >> Fatal error: Stdlib__Char unbound at toplevel 454 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Char: Misc.Fatal_error 455 - >> Fatal error: Stdlib__BytesLabels unbound at toplevel 456 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__BytesLabels: Misc.Fatal_error 457 - >> Fatal error: Stdlib__Condition unbound at toplevel 458 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Condition: Misc.Fatal_error 459 - >> Fatal error: Stdlib__Digest unbound at toplevel 460 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Digest: Misc.Fatal_error 461 - >> Fatal error: Stdlib__Dynarray unbound at toplevel 462 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Dynarray: Misc.Fatal_error 463 - >> Fatal error: Stdlib__Effect unbound at toplevel 464 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Effect: Misc.Fatal_error 465 - >> Fatal error: Stdlib__Domain unbound at toplevel 466 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Domain: Misc.Fatal_error 467 - >> Fatal error: Stdlib__Complex unbound at toplevel 468 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Complex: Misc.Fatal_error 469 - >> Fatal error: Stdlib__Bool unbound at toplevel 470 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bool: Misc.Fatal_error 471 - >> Fatal error: Stdlib__Ephemeron unbound at toplevel 472 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Ephemeron: Misc.Fatal_error 473 - >> Fatal error: Stdlib__Float unbound at toplevel 474 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Float: Misc.Fatal_error 475 - >> Fatal error: Stdlib__Filename unbound at toplevel 476 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Filename: Misc.Fatal_error 477 - >> Fatal error: Stdlib__Fun unbound at toplevel 478 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Fun: Misc.Fatal_error 479 - >> Fatal error: Stdlib__Hashtbl unbound at toplevel 480 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Hashtbl: Misc.Fatal_error 481 - >> Fatal error: Stdlib__Gc unbound at toplevel 482 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Gc: Misc.Fatal_error 483 - >> Fatal error: Stdlib__Format unbound at toplevel 484 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 485 - >> Fatal error: Stdlib__Format unbound at toplevel 486 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 487 - >> Fatal error: Stdlib__In_channel unbound at toplevel 488 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__In_channel: Misc.Fatal_error 489 - >> Fatal error: Stdlib__Int32 unbound at toplevel 490 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int32: Misc.Fatal_error 491 - >> Fatal error: Stdlib__Int unbound at toplevel 492 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int: Misc.Fatal_error 493 - >> Fatal error: Stdlib__Lazy unbound at toplevel 494 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Lazy: Misc.Fatal_error 495 - >> Fatal error: Stdlib__List unbound at toplevel 496 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__List: Misc.Fatal_error 497 - >> Fatal error: Stdlib__Lexing unbound at toplevel 498 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Lexing: Misc.Fatal_error 499 - >> Fatal error: Stdlib__Int64 unbound at toplevel 500 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int64: Misc.Fatal_error 501 - >> Fatal error: Stdlib__Iarray unbound at toplevel 502 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Iarray: Misc.Fatal_error 503 - >> Fatal error: Stdlib__Map unbound at toplevel 504 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Map: Misc.Fatal_error 505 - >> Fatal error: Stdlib__MoreLabels unbound at toplevel 506 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__MoreLabels: Misc.Fatal_error 507 - >> Fatal error: Stdlib__Marshal unbound at toplevel 508 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Marshal: Misc.Fatal_error 509 - >> Fatal error: Stdlib__Nativeint unbound at toplevel 510 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Nativeint: Misc.Fatal_error 511 - >> Fatal error: Stdlib__Oo unbound at toplevel 512 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Oo: Misc.Fatal_error 513 - >> Fatal error: Stdlib__Obj unbound at toplevel 514 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Obj: Misc.Fatal_error 515 - >> Fatal error: Stdlib__Mutex unbound at toplevel 516 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Mutex: Misc.Fatal_error 517 - >> Fatal error: Stdlib__Out_channel unbound at toplevel 518 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Out_channel: Misc.Fatal_error 519 - >> Fatal error: Stdlib__Parsing unbound at toplevel 520 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Parsing: Misc.Fatal_error 521 - >> Fatal error: Stdlib__Pair unbound at toplevel 522 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Pair: Misc.Fatal_error 523 - >> Fatal error: Stdlib__Printexc unbound at toplevel 524 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Printexc: Misc.Fatal_error 525 - >> Fatal error: Stdlib__Queue unbound at toplevel 526 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Queue: Misc.Fatal_error 527 - >> Fatal error: Stdlib__Printf unbound at toplevel 528 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Printf: Misc.Fatal_error 529 - >> Fatal error: Stdlib__Pqueue unbound at toplevel 530 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Pqueue: Misc.Fatal_error 531 - >> Fatal error: Stdlib__Option unbound at toplevel 532 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Option: Misc.Fatal_error 533 - >> Fatal error: Stdlib__Repr unbound at toplevel 534 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Repr: Misc.Fatal_error 535 - >> Fatal error: Stdlib__Scanf unbound at toplevel 536 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Scanf: Misc.Fatal_error 537 - >> Fatal error: Stdlib__Result unbound at toplevel 538 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Result: Misc.Fatal_error 539 - >> Fatal error: Stdlib__Seq unbound at toplevel 540 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Seq: Misc.Fatal_error 541 - >> Fatal error: Stdlib__Stack unbound at toplevel 542 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Stack: Misc.Fatal_error 543 - >> Fatal error: Stdlib__Set unbound at toplevel 544 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Set: Misc.Fatal_error 545 - >> Fatal error: Stdlib__Semaphore unbound at toplevel 546 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Semaphore: Misc.Fatal_error 547 - >> Fatal error: Stdlib__String unbound at toplevel 548 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__String: Misc.Fatal_error 549 - >> Fatal error: Stdlib__Sys unbound at toplevel 550 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 551 - >> Fatal error: Stdlib__Sys unbound at toplevel 552 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 553 - >> Fatal error: Stdlib__StringLabels unbound at toplevel 554 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__StringLabels: Misc.Fatal_error 555 - >> Fatal error: Stdlib__Uchar unbound at toplevel 556 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Uchar: Misc.Fatal_error 557 - >> Fatal error: Stdlib__Weak unbound at toplevel 558 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Weak: Misc.Fatal_error 559 - >> Fatal error: Stdlib__Unit unbound at toplevel 560 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Unit: Misc.Fatal_error 561 - >> Fatal error: Stdlib__Type unbound at toplevel 562 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Type: Misc.Fatal_error 563 - >> Fatal error: Stdlib__StdLabels unbound at toplevel 564 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__StdLabels: Misc.Fatal_error 565 - >> Fatal error: Stdlib__Random unbound at toplevel 566 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Random: Misc.Fatal_error 567 - >> Fatal error: Stdlib__ListLabels unbound at toplevel 568 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__ListLabels: Misc.Fatal_error 569 - >> Fatal error: Stdlib__Either unbound at toplevel 570 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Either: Misc.Fatal_error 571 171 node_env_test.js: [INFO] setup() finished for env env1 572 172 [PASS] setup_env1: Setup environment env1 573 - node_env_test.js: [INFO] [ENV] with_env called for env1 (has_saved_env=true, runtime_values_count=0) 574 - node_env_test.js: [INFO] [ENV] Env.diff found 1 new idents for env1 575 - node_env_test.js: [INFO] [ENV] Capturing 1 new bindings for env env1 576 - node_env_test.js: [INFO] [ENV] captured env1_val 577 173 [PASS] env1_define: # let env1_val = 100;; 578 174 val env1_val : int = 100 579 175 580 176 --- Section 3: Environment Isolation --- 581 - node_env_test.js: [INFO] [ENV] with_env called for env1 (has_saved_env=true, runtime_values_count=1) 582 - node_env_test.js: [INFO] [ENV] Restoring 1 runtime values for env env1 583 - node_env_test.js: [INFO] [ENV] setvalue env1_val 584 177 Line 1, characters 0-11: 585 178 Error: Unbound value default_val 586 - node_env_test.js: [INFO] [ENV] Env.diff found 0 new idents for env1 587 179 [PASS] isolation_default_from_env1: No leakage: # default_val;; 588 - node_env_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=1) 589 - node_env_test.js: [INFO] [ENV] Restoring 1 runtime values for env default 590 - node_env_test.js: [INFO] [ENV] setvalue default_val 591 180 592 181 Line 1, characters 0-8: 593 182 Error: Unbound value env1_val 594 - node_env_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 595 183 [PASS] isolation_env1_from_default: No leakage: # env1_val;; 596 - node_env_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=1) 597 - node_env_test.js: [INFO] [ENV] Restoring 1 runtime values for env default 598 - node_env_test.js: [INFO] [ENV] setvalue default_val 599 - node_env_test.js: [INFO] [ENV] Env.diff found 0 new idents for default 600 184 [PASS] default_still_works: # default_val;; 601 185 - : int = 42 602 186 603 187 --- Section 4: Multiple Environments --- 604 188 node_env_test.js: [INFO] create_env(env2) 605 189 node_env_test.js: [INFO] setup() for env env2... 606 - node_env_test.js: [INFO] [ENV] with_env called for env2 (has_saved_env=false, runtime_values_count=0) 607 190 error while evaluating #enable "pretty";; 608 191 error while evaluating #disable "shortvar";; 609 192 node_env_test.js: [INFO] Setup complete 610 - node_env_test.js: [INFO] [ENV] Env.diff found 112 new idents for env2 611 - node_env_test.js: [INFO] [ENV] Capturing 112 new bindings for env env2 612 - >> Fatal error: Continuation_already_taken unbound at toplevel 613 - node_env_test.js: [INFO] [ENV] could not capture Continuation_already_taken: Misc.Fatal_error 614 - >> Fatal error: Division_by_zero unbound at toplevel 615 - node_env_test.js: [INFO] [ENV] could not capture Division_by_zero: Misc.Fatal_error 616 - >> Fatal error: Failure unbound at toplevel 617 - node_env_test.js: [INFO] [ENV] could not capture Failure: Misc.Fatal_error 618 - >> Fatal error: Match_failure unbound at toplevel 619 - node_env_test.js: [INFO] [ENV] could not capture Match_failure: Misc.Fatal_error 620 - >> Fatal error: Invalid_argument unbound at toplevel 621 - node_env_test.js: [INFO] [ENV] could not capture Invalid_argument: Misc.Fatal_error 622 - >> Fatal error: End_of_file unbound at toplevel 623 - node_env_test.js: [INFO] [ENV] could not capture End_of_file: Misc.Fatal_error 624 - >> Fatal error: Assert_failure unbound at toplevel 625 - node_env_test.js: [INFO] [ENV] could not capture Assert_failure: Misc.Fatal_error 626 - >> Fatal error: Not_found unbound at toplevel 627 - node_env_test.js: [INFO] [ENV] could not capture Not_found: Misc.Fatal_error 628 - >> Fatal error: Out_of_memory unbound at toplevel 629 - node_env_test.js: [INFO] [ENV] could not capture Out_of_memory: Misc.Fatal_error 630 - >> Fatal error: Sys_blocked_io unbound at toplevel 631 - node_env_test.js: [INFO] [ENV] could not capture Sys_blocked_io: Misc.Fatal_error 632 - >> Fatal error: Undefined_recursive_module unbound at toplevel 633 - node_env_test.js: [INFO] [ENV] could not capture Undefined_recursive_module: Misc.Fatal_error 634 - >> Fatal error: Sys_error unbound at toplevel 635 - node_env_test.js: [INFO] [ENV] could not capture Sys_error: Misc.Fatal_error 636 - >> Fatal error: Stack_overflow unbound at toplevel 637 - node_env_test.js: [INFO] [ENV] could not capture Stack_overflow: Misc.Fatal_error 638 - >> Fatal error: CamlinternalFormat unbound at toplevel 639 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 640 - >> Fatal error: CamlinternalLazy unbound at toplevel 641 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 642 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 643 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 644 - >> Fatal error: CamlinternalOO unbound at toplevel 645 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 646 - >> Fatal error: Stdlib unbound at toplevel 647 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 648 - >> Fatal error: Stdlib__Sys unbound at toplevel 649 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 650 - >> Fatal error: Stdlib__Format unbound at toplevel 651 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 652 - >> Fatal error: Std_exit unbound at toplevel 653 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 654 - >> Fatal error: CamlinternalMod unbound at toplevel 655 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 656 - >> Fatal error: CamlinternalFormat unbound at toplevel 657 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 658 - >> Fatal error: CamlinternalFormat unbound at toplevel 659 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 660 - >> Fatal error: CamlinternalFormat unbound at toplevel 661 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 662 - >> Fatal error: CamlinternalLazy unbound at toplevel 663 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 664 - >> Fatal error: CamlinternalLazy unbound at toplevel 665 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 666 - >> Fatal error: CamlinternalLazy unbound at toplevel 667 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 668 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 669 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 670 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 671 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 672 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 673 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 674 - >> Fatal error: CamlinternalOO unbound at toplevel 675 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 676 - >> Fatal error: CamlinternalOO unbound at toplevel 677 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 678 - >> Fatal error: CamlinternalOO unbound at toplevel 679 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 680 - >> Fatal error: Std_exit unbound at toplevel 681 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 682 - >> Fatal error: Std_exit unbound at toplevel 683 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 684 - >> Fatal error: Std_exit unbound at toplevel 685 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 686 - >> Fatal error: CamlinternalMod unbound at toplevel 687 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 688 - >> Fatal error: CamlinternalMod unbound at toplevel 689 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 690 - >> Fatal error: CamlinternalMod unbound at toplevel 691 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 692 - >> Fatal error: Stdlib__Arg unbound at toplevel 693 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Arg: Misc.Fatal_error 694 - >> Fatal error: Stdlib__Array unbound at toplevel 695 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Array: Misc.Fatal_error 696 - >> Fatal error: Stdlib__Atomic unbound at toplevel 697 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Atomic: Misc.Fatal_error 698 - >> Fatal error: Stdlib__Bigarray unbound at toplevel 699 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bigarray: Misc.Fatal_error 700 - >> Fatal error: Stdlib__ArrayLabels unbound at toplevel 701 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__ArrayLabels: Misc.Fatal_error 702 - >> Fatal error: Stdlib unbound at toplevel 703 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 704 - >> Fatal error: Stdlib unbound at toplevel 705 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 706 - >> Fatal error: Stdlib unbound at toplevel 707 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 708 - >> Fatal error: Stdlib__Buffer unbound at toplevel 709 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Buffer: Misc.Fatal_error 710 - >> Fatal error: Stdlib__Bytes unbound at toplevel 711 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bytes: Misc.Fatal_error 712 - >> Fatal error: Stdlib__Callback unbound at toplevel 713 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Callback: Misc.Fatal_error 714 - >> Fatal error: Stdlib__Char unbound at toplevel 715 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Char: Misc.Fatal_error 716 - >> Fatal error: Stdlib__BytesLabels unbound at toplevel 717 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__BytesLabels: Misc.Fatal_error 718 - >> Fatal error: Stdlib__Condition unbound at toplevel 719 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Condition: Misc.Fatal_error 720 - >> Fatal error: Stdlib__Digest unbound at toplevel 721 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Digest: Misc.Fatal_error 722 - >> Fatal error: Stdlib__Dynarray unbound at toplevel 723 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Dynarray: Misc.Fatal_error 724 - >> Fatal error: Stdlib__Effect unbound at toplevel 725 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Effect: Misc.Fatal_error 726 - >> Fatal error: Stdlib__Domain unbound at toplevel 727 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Domain: Misc.Fatal_error 728 - >> Fatal error: Stdlib__Complex unbound at toplevel 729 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Complex: Misc.Fatal_error 730 - >> Fatal error: Stdlib__Bool unbound at toplevel 731 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bool: Misc.Fatal_error 732 - >> Fatal error: Stdlib__Ephemeron unbound at toplevel 733 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Ephemeron: Misc.Fatal_error 734 - >> Fatal error: Stdlib__Float unbound at toplevel 735 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Float: Misc.Fatal_error 736 - >> Fatal error: Stdlib__Filename unbound at toplevel 737 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Filename: Misc.Fatal_error 738 - >> Fatal error: Stdlib__Fun unbound at toplevel 739 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Fun: Misc.Fatal_error 740 - >> Fatal error: Stdlib__Hashtbl unbound at toplevel 741 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Hashtbl: Misc.Fatal_error 742 - >> Fatal error: Stdlib__Gc unbound at toplevel 743 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Gc: Misc.Fatal_error 744 - >> Fatal error: Stdlib__Format unbound at toplevel 745 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 746 - >> Fatal error: Stdlib__Format unbound at toplevel 747 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 748 - >> Fatal error: Stdlib__Format unbound at toplevel 749 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 750 - >> Fatal error: Stdlib__In_channel unbound at toplevel 751 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__In_channel: Misc.Fatal_error 752 - >> Fatal error: Stdlib__Int32 unbound at toplevel 753 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int32: Misc.Fatal_error 754 - >> Fatal error: Stdlib__Int unbound at toplevel 755 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int: Misc.Fatal_error 756 - >> Fatal error: Stdlib__Lazy unbound at toplevel 757 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Lazy: Misc.Fatal_error 758 - >> Fatal error: Stdlib__List unbound at toplevel 759 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__List: Misc.Fatal_error 760 - >> Fatal error: Stdlib__Lexing unbound at toplevel 761 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Lexing: Misc.Fatal_error 762 - >> Fatal error: Stdlib__Int64 unbound at toplevel 763 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int64: Misc.Fatal_error 764 - >> Fatal error: Stdlib__Iarray unbound at toplevel 765 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Iarray: Misc.Fatal_error 766 - >> Fatal error: Stdlib__Map unbound at toplevel 767 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Map: Misc.Fatal_error 768 - >> Fatal error: Stdlib__MoreLabels unbound at toplevel 769 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__MoreLabels: Misc.Fatal_error 770 - >> Fatal error: Stdlib__Marshal unbound at toplevel 771 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Marshal: Misc.Fatal_error 772 - >> Fatal error: Stdlib__Nativeint unbound at toplevel 773 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Nativeint: Misc.Fatal_error 774 - >> Fatal error: Stdlib__Oo unbound at toplevel 775 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Oo: Misc.Fatal_error 776 - >> Fatal error: Stdlib__Obj unbound at toplevel 777 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Obj: Misc.Fatal_error 778 - >> Fatal error: Stdlib__Mutex unbound at toplevel 779 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Mutex: Misc.Fatal_error 780 - >> Fatal error: Stdlib__Out_channel unbound at toplevel 781 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Out_channel: Misc.Fatal_error 782 - >> Fatal error: Stdlib__Parsing unbound at toplevel 783 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Parsing: Misc.Fatal_error 784 - >> Fatal error: Stdlib__Pair unbound at toplevel 785 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Pair: Misc.Fatal_error 786 - >> Fatal error: Stdlib__Printexc unbound at toplevel 787 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Printexc: Misc.Fatal_error 788 - >> Fatal error: Stdlib__Queue unbound at toplevel 789 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Queue: Misc.Fatal_error 790 - >> Fatal error: Stdlib__Printf unbound at toplevel 791 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Printf: Misc.Fatal_error 792 - >> Fatal error: Stdlib__Pqueue unbound at toplevel 793 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Pqueue: Misc.Fatal_error 794 - >> Fatal error: Stdlib__Option unbound at toplevel 795 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Option: Misc.Fatal_error 796 - >> Fatal error: Stdlib__Repr unbound at toplevel 797 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Repr: Misc.Fatal_error 798 - >> Fatal error: Stdlib__Scanf unbound at toplevel 799 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Scanf: Misc.Fatal_error 800 - >> Fatal error: Stdlib__Result unbound at toplevel 801 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Result: Misc.Fatal_error 802 - >> Fatal error: Stdlib__Seq unbound at toplevel 803 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Seq: Misc.Fatal_error 804 - >> Fatal error: Stdlib__Stack unbound at toplevel 805 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Stack: Misc.Fatal_error 806 - >> Fatal error: Stdlib__Set unbound at toplevel 807 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Set: Misc.Fatal_error 808 - >> Fatal error: Stdlib__Semaphore unbound at toplevel 809 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Semaphore: Misc.Fatal_error 810 - >> Fatal error: Stdlib__String unbound at toplevel 811 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__String: Misc.Fatal_error 812 - >> Fatal error: Stdlib__Sys unbound at toplevel 813 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 814 - >> Fatal error: Stdlib__Sys unbound at toplevel 815 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 816 - >> Fatal error: Stdlib__Sys unbound at toplevel 817 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 818 - >> Fatal error: Stdlib__StringLabels unbound at toplevel 819 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__StringLabels: Misc.Fatal_error 820 - >> Fatal error: Stdlib__Uchar unbound at toplevel 821 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Uchar: Misc.Fatal_error 822 - >> Fatal error: Stdlib__Weak unbound at toplevel 823 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Weak: Misc.Fatal_error 824 - >> Fatal error: Stdlib__Unit unbound at toplevel 825 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Unit: Misc.Fatal_error 826 - >> Fatal error: Stdlib__Type unbound at toplevel 827 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Type: Misc.Fatal_error 828 - >> Fatal error: Stdlib__StdLabels unbound at toplevel 829 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__StdLabels: Misc.Fatal_error 830 - >> Fatal error: Stdlib__Random unbound at toplevel 831 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Random: Misc.Fatal_error 832 - >> Fatal error: Stdlib__ListLabels unbound at toplevel 833 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__ListLabels: Misc.Fatal_error 834 - >> Fatal error: Stdlib__Either unbound at toplevel 835 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Either: Misc.Fatal_error 836 193 node_env_test.js: [INFO] setup() finished for env env2 837 194 [PASS] create_and_setup_env2: Created and setup env2 838 - node_env_test.js: [INFO] [ENV] with_env called for env2 (has_saved_env=true, runtime_values_count=0) 839 - node_env_test.js: [INFO] [ENV] Env.diff found 1 new idents for env2 840 - node_env_test.js: [INFO] [ENV] Capturing 1 new bindings for env env2 841 - node_env_test.js: [INFO] [ENV] captured env2_val 842 195 [PASS] env2_define: # let env2_val = 200;; 843 196 val env2_val : int = 200 844 - node_env_test.js: [INFO] [ENV] with_env called for env2 (has_saved_env=true, runtime_values_count=1) 845 - node_env_test.js: [INFO] [ENV] Restoring 1 runtime values for env env2 846 - node_env_test.js: [INFO] [ENV] setvalue env2_val 847 197 848 198 Line 1, characters 0-8: 849 199 Error: Unbound value env1_val 850 200 Hint: Did you mean env2_val? 851 - node_env_test.js: [INFO] [ENV] Env.diff found 0 new idents for env2 852 201 [PASS] isolation_env1_from_env2: No leakage: # env1_val;; 853 - node_env_test.js: [INFO] [ENV] with_env called for env1 (has_saved_env=true, runtime_values_count=1) 854 - node_env_test.js: [INFO] [ENV] Restoring 1 runtime values for env env1 855 - node_env_test.js: [INFO] [ENV] setvalue env1_val 856 202 857 203 Line 1, characters 0-8: 858 204 Error: Unbound value env2_val 859 205 Hint: Did you mean env1_val? 860 - node_env_test.js: [INFO] [ENV] Env.diff found 0 new idents for env1 861 206 [PASS] isolation_env2_from_env1: No leakage: # env2_val;; 862 207 863 208 --- Section 5: List Environments --- ··· 877 222 --- Section 7: Reuse Environment Name --- 878 223 node_env_test.js: [INFO] create_env(env2) 879 224 node_env_test.js: [INFO] setup() for env env2... 880 - node_env_test.js: [INFO] [ENV] with_env called for env2 (has_saved_env=false, runtime_values_count=0) 881 225 error while evaluating #enable "pretty";; 882 226 error while evaluating #disable "shortvar";; 883 227 node_env_test.js: [INFO] Setup complete 884 - node_env_test.js: [INFO] [ENV] Env.diff found 121 new idents for env2 885 - node_env_test.js: [INFO] [ENV] Capturing 121 new bindings for env env2 886 - >> Fatal error: Continuation_already_taken unbound at toplevel 887 - node_env_test.js: [INFO] [ENV] could not capture Continuation_already_taken: Misc.Fatal_error 888 - >> Fatal error: Division_by_zero unbound at toplevel 889 - node_env_test.js: [INFO] [ENV] could not capture Division_by_zero: Misc.Fatal_error 890 - >> Fatal error: Failure unbound at toplevel 891 - node_env_test.js: [INFO] [ENV] could not capture Failure: Misc.Fatal_error 892 - >> Fatal error: Match_failure unbound at toplevel 893 - node_env_test.js: [INFO] [ENV] could not capture Match_failure: Misc.Fatal_error 894 - >> Fatal error: Invalid_argument unbound at toplevel 895 - node_env_test.js: [INFO] [ENV] could not capture Invalid_argument: Misc.Fatal_error 896 - >> Fatal error: End_of_file unbound at toplevel 897 - node_env_test.js: [INFO] [ENV] could not capture End_of_file: Misc.Fatal_error 898 - >> Fatal error: Assert_failure unbound at toplevel 899 - node_env_test.js: [INFO] [ENV] could not capture Assert_failure: Misc.Fatal_error 900 - >> Fatal error: Not_found unbound at toplevel 901 - node_env_test.js: [INFO] [ENV] could not capture Not_found: Misc.Fatal_error 902 - >> Fatal error: Out_of_memory unbound at toplevel 903 - node_env_test.js: [INFO] [ENV] could not capture Out_of_memory: Misc.Fatal_error 904 - >> Fatal error: Sys_blocked_io unbound at toplevel 905 - node_env_test.js: [INFO] [ENV] could not capture Sys_blocked_io: Misc.Fatal_error 906 - >> Fatal error: Undefined_recursive_module unbound at toplevel 907 - node_env_test.js: [INFO] [ENV] could not capture Undefined_recursive_module: Misc.Fatal_error 908 - >> Fatal error: Sys_error unbound at toplevel 909 - node_env_test.js: [INFO] [ENV] could not capture Sys_error: Misc.Fatal_error 910 - >> Fatal error: Stack_overflow unbound at toplevel 911 - node_env_test.js: [INFO] [ENV] could not capture Stack_overflow: Misc.Fatal_error 912 - >> Fatal error: CamlinternalFormat unbound at toplevel 913 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 914 - >> Fatal error: CamlinternalLazy unbound at toplevel 915 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 916 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 917 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 918 - >> Fatal error: CamlinternalOO unbound at toplevel 919 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 920 - >> Fatal error: Stdlib unbound at toplevel 921 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 922 - >> Fatal error: Stdlib__Sys unbound at toplevel 923 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 924 - >> Fatal error: Stdlib__Format unbound at toplevel 925 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 926 - >> Fatal error: Std_exit unbound at toplevel 927 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 928 - >> Fatal error: CamlinternalMod unbound at toplevel 929 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 930 - >> Fatal error: CamlinternalFormat unbound at toplevel 931 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 932 - >> Fatal error: CamlinternalFormat unbound at toplevel 933 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 934 - >> Fatal error: CamlinternalFormat unbound at toplevel 935 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 936 - >> Fatal error: CamlinternalFormat unbound at toplevel 937 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 938 - >> Fatal error: CamlinternalLazy unbound at toplevel 939 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 940 - >> Fatal error: CamlinternalLazy unbound at toplevel 941 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 942 - >> Fatal error: CamlinternalLazy unbound at toplevel 943 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 944 - >> Fatal error: CamlinternalLazy unbound at toplevel 945 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 946 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 947 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 948 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 949 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 950 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 951 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 952 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 953 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 954 - >> Fatal error: CamlinternalOO unbound at toplevel 955 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 956 - >> Fatal error: CamlinternalOO unbound at toplevel 957 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 958 - >> Fatal error: CamlinternalOO unbound at toplevel 959 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 960 - >> Fatal error: CamlinternalOO unbound at toplevel 961 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 962 - >> Fatal error: Std_exit unbound at toplevel 963 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 964 - >> Fatal error: Std_exit unbound at toplevel 965 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 966 - >> Fatal error: Std_exit unbound at toplevel 967 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 968 - >> Fatal error: Std_exit unbound at toplevel 969 - node_env_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 970 - >> Fatal error: CamlinternalMod unbound at toplevel 971 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 972 - >> Fatal error: CamlinternalMod unbound at toplevel 973 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 974 - >> Fatal error: CamlinternalMod unbound at toplevel 975 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 976 - >> Fatal error: CamlinternalMod unbound at toplevel 977 - node_env_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 978 - >> Fatal error: Stdlib__Arg unbound at toplevel 979 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Arg: Misc.Fatal_error 980 - >> Fatal error: Stdlib__Array unbound at toplevel 981 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Array: Misc.Fatal_error 982 - >> Fatal error: Stdlib__Atomic unbound at toplevel 983 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Atomic: Misc.Fatal_error 984 - >> Fatal error: Stdlib__Bigarray unbound at toplevel 985 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bigarray: Misc.Fatal_error 986 - >> Fatal error: Stdlib__ArrayLabels unbound at toplevel 987 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__ArrayLabels: Misc.Fatal_error 988 - >> Fatal error: Stdlib unbound at toplevel 989 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 990 - >> Fatal error: Stdlib unbound at toplevel 991 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 992 - >> Fatal error: Stdlib unbound at toplevel 993 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 994 - >> Fatal error: Stdlib unbound at toplevel 995 - node_env_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 996 - >> Fatal error: Stdlib__Buffer unbound at toplevel 997 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Buffer: Misc.Fatal_error 998 - >> Fatal error: Stdlib__Bytes unbound at toplevel 999 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bytes: Misc.Fatal_error 1000 - >> Fatal error: Stdlib__Callback unbound at toplevel 1001 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Callback: Misc.Fatal_error 1002 - >> Fatal error: Stdlib__Char unbound at toplevel 1003 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Char: Misc.Fatal_error 1004 - >> Fatal error: Stdlib__BytesLabels unbound at toplevel 1005 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__BytesLabels: Misc.Fatal_error 1006 - >> Fatal error: Stdlib__Condition unbound at toplevel 1007 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Condition: Misc.Fatal_error 1008 - >> Fatal error: Stdlib__Digest unbound at toplevel 1009 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Digest: Misc.Fatal_error 1010 - >> Fatal error: Stdlib__Dynarray unbound at toplevel 1011 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Dynarray: Misc.Fatal_error 1012 - >> Fatal error: Stdlib__Effect unbound at toplevel 1013 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Effect: Misc.Fatal_error 1014 - >> Fatal error: Stdlib__Domain unbound at toplevel 1015 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Domain: Misc.Fatal_error 1016 - >> Fatal error: Stdlib__Complex unbound at toplevel 1017 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Complex: Misc.Fatal_error 1018 - >> Fatal error: Stdlib__Bool unbound at toplevel 1019 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Bool: Misc.Fatal_error 1020 - >> Fatal error: Stdlib__Ephemeron unbound at toplevel 1021 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Ephemeron: Misc.Fatal_error 1022 - >> Fatal error: Stdlib__Float unbound at toplevel 1023 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Float: Misc.Fatal_error 1024 - >> Fatal error: Stdlib__Filename unbound at toplevel 1025 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Filename: Misc.Fatal_error 1026 - >> Fatal error: Stdlib__Fun unbound at toplevel 1027 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Fun: Misc.Fatal_error 1028 - >> Fatal error: Stdlib__Hashtbl unbound at toplevel 1029 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Hashtbl: Misc.Fatal_error 1030 - >> Fatal error: Stdlib__Gc unbound at toplevel 1031 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Gc: Misc.Fatal_error 1032 - >> Fatal error: Stdlib__Format unbound at toplevel 1033 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 1034 - >> Fatal error: Stdlib__Format unbound at toplevel 1035 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 1036 - >> Fatal error: Stdlib__Format unbound at toplevel 1037 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 1038 - >> Fatal error: Stdlib__Format unbound at toplevel 1039 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 1040 - >> Fatal error: Stdlib__In_channel unbound at toplevel 1041 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__In_channel: Misc.Fatal_error 1042 - >> Fatal error: Stdlib__Int32 unbound at toplevel 1043 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int32: Misc.Fatal_error 1044 - >> Fatal error: Stdlib__Int unbound at toplevel 1045 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int: Misc.Fatal_error 1046 - >> Fatal error: Stdlib__Lazy unbound at toplevel 1047 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Lazy: Misc.Fatal_error 1048 - >> Fatal error: Stdlib__List unbound at toplevel 1049 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__List: Misc.Fatal_error 1050 - >> Fatal error: Stdlib__Lexing unbound at toplevel 1051 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Lexing: Misc.Fatal_error 1052 - >> Fatal error: Stdlib__Int64 unbound at toplevel 1053 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Int64: Misc.Fatal_error 1054 - >> Fatal error: Stdlib__Iarray unbound at toplevel 1055 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Iarray: Misc.Fatal_error 1056 - >> Fatal error: Stdlib__Map unbound at toplevel 1057 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Map: Misc.Fatal_error 1058 - >> Fatal error: Stdlib__MoreLabels unbound at toplevel 1059 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__MoreLabels: Misc.Fatal_error 1060 - >> Fatal error: Stdlib__Marshal unbound at toplevel 1061 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Marshal: Misc.Fatal_error 1062 - >> Fatal error: Stdlib__Nativeint unbound at toplevel 1063 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Nativeint: Misc.Fatal_error 1064 - >> Fatal error: Stdlib__Oo unbound at toplevel 1065 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Oo: Misc.Fatal_error 1066 - >> Fatal error: Stdlib__Obj unbound at toplevel 1067 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Obj: Misc.Fatal_error 1068 - >> Fatal error: Stdlib__Mutex unbound at toplevel 1069 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Mutex: Misc.Fatal_error 1070 - >> Fatal error: Stdlib__Out_channel unbound at toplevel 1071 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Out_channel: Misc.Fatal_error 1072 - >> Fatal error: Stdlib__Parsing unbound at toplevel 1073 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Parsing: Misc.Fatal_error 1074 - >> Fatal error: Stdlib__Pair unbound at toplevel 1075 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Pair: Misc.Fatal_error 1076 - >> Fatal error: Stdlib__Printexc unbound at toplevel 1077 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Printexc: Misc.Fatal_error 1078 - >> Fatal error: Stdlib__Queue unbound at toplevel 1079 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Queue: Misc.Fatal_error 1080 - >> Fatal error: Stdlib__Printf unbound at toplevel 1081 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Printf: Misc.Fatal_error 1082 - >> Fatal error: Stdlib__Pqueue unbound at toplevel 1083 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Pqueue: Misc.Fatal_error 1084 - >> Fatal error: Stdlib__Option unbound at toplevel 1085 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Option: Misc.Fatal_error 1086 - >> Fatal error: Stdlib__Repr unbound at toplevel 1087 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Repr: Misc.Fatal_error 1088 - >> Fatal error: Stdlib__Scanf unbound at toplevel 1089 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Scanf: Misc.Fatal_error 1090 - >> Fatal error: Stdlib__Result unbound at toplevel 1091 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Result: Misc.Fatal_error 1092 - >> Fatal error: Stdlib__Seq unbound at toplevel 1093 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Seq: Misc.Fatal_error 1094 - >> Fatal error: Stdlib__Stack unbound at toplevel 1095 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Stack: Misc.Fatal_error 1096 - >> Fatal error: Stdlib__Set unbound at toplevel 1097 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Set: Misc.Fatal_error 1098 - >> Fatal error: Stdlib__Semaphore unbound at toplevel 1099 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Semaphore: Misc.Fatal_error 1100 - >> Fatal error: Stdlib__String unbound at toplevel 1101 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__String: Misc.Fatal_error 1102 - >> Fatal error: Stdlib__Sys unbound at toplevel 1103 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 1104 - >> Fatal error: Stdlib__Sys unbound at toplevel 1105 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 1106 - >> Fatal error: Stdlib__Sys unbound at toplevel 1107 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 1108 - >> Fatal error: Stdlib__Sys unbound at toplevel 1109 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 1110 - >> Fatal error: Stdlib__StringLabels unbound at toplevel 1111 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__StringLabels: Misc.Fatal_error 1112 - >> Fatal error: Stdlib__Uchar unbound at toplevel 1113 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Uchar: Misc.Fatal_error 1114 - >> Fatal error: Stdlib__Weak unbound at toplevel 1115 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Weak: Misc.Fatal_error 1116 - >> Fatal error: Stdlib__Unit unbound at toplevel 1117 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Unit: Misc.Fatal_error 1118 - >> Fatal error: Stdlib__Type unbound at toplevel 1119 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Type: Misc.Fatal_error 1120 - >> Fatal error: Stdlib__StdLabels unbound at toplevel 1121 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__StdLabels: Misc.Fatal_error 1122 - >> Fatal error: Stdlib__Random unbound at toplevel 1123 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Random: Misc.Fatal_error 1124 - >> Fatal error: Stdlib__ListLabels unbound at toplevel 1125 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__ListLabels: Misc.Fatal_error 1126 - >> Fatal error: Stdlib__Either unbound at toplevel 1127 - node_env_test.js: [INFO] [ENV] could not capture Stdlib__Either: Misc.Fatal_error 1128 228 node_env_test.js: [INFO] setup() finished for env env2 1129 - node_env_test.js: [INFO] [ENV] with_env called for env2 (has_saved_env=true, runtime_values_count=0) 1130 229 1131 230 Line 1, characters 0-8: 1132 231 Error: Unbound value env2_val 1133 - node_env_test.js: [INFO] [ENV] Env.diff found 0 new idents for env2 1134 232 [PASS] new_env2_clean: Old value gone: # env2_val;; 1135 - node_env_test.js: [INFO] [ENV] with_env called for env2 (has_saved_env=true, runtime_values_count=0) 1136 - node_env_test.js: [INFO] [ENV] Env.diff found 1 new idents for env2 1137 - node_env_test.js: [INFO] [ENV] Capturing 1 new bindings for env env2 1138 - node_env_test.js: [INFO] [ENV] captured new_env2_val 1139 233 [PASS] new_env2_define: # let new_env2_val = 999;; 1140 234 val new_env2_val : int = 999 1141 235
-221
test/node/node_mime_test.expected
··· 148 148 node_mime_test.js: [INFO] toplevel modules: Std_exit, CamlinternalFormatBasics, CamlinternalLazy, CamlinternalMod, Stdlib, CamlinternalOO, CamlinternalFormat 149 149 node_mime_test.js: [INFO] init() finished 150 150 node_mime_test.js: [INFO] setup() for env default... 151 - node_mime_test.js: [INFO] [ENV] with_env called for default (has_saved_env=false, runtime_values_count=0) 152 151 node_mime_test.js: [INFO] Fetching stdlib__Format.cmi 153 152 154 153 node_mime_test.js: [INFO] Fetching stdlib__Sys.cmi ··· 156 155 error while evaluating #enable "pretty";; 157 156 error while evaluating #disable "shortvar";; 158 157 node_mime_test.js: [INFO] Setup complete 159 - node_mime_test.js: [INFO] [ENV] Env.diff found 92 new idents for default 160 - node_mime_test.js: [INFO] [ENV] Capturing 92 new bindings for env default 161 - >> Fatal error: Continuation_already_taken unbound at toplevel 162 - node_mime_test.js: [INFO] [ENV] could not capture Continuation_already_taken: Misc.Fatal_error 163 - >> Fatal error: Division_by_zero unbound at toplevel 164 - node_mime_test.js: [INFO] [ENV] could not capture Division_by_zero: Misc.Fatal_error 165 - >> Fatal error: Failure unbound at toplevel 166 - node_mime_test.js: [INFO] [ENV] could not capture Failure: Misc.Fatal_error 167 - >> Fatal error: Match_failure unbound at toplevel 168 - node_mime_test.js: [INFO] [ENV] could not capture Match_failure: Misc.Fatal_error 169 - >> Fatal error: Invalid_argument unbound at toplevel 170 - node_mime_test.js: [INFO] [ENV] could not capture Invalid_argument: Misc.Fatal_error 171 - >> Fatal error: End_of_file unbound at toplevel 172 - node_mime_test.js: [INFO] [ENV] could not capture End_of_file: Misc.Fatal_error 173 - >> Fatal error: Assert_failure unbound at toplevel 174 - node_mime_test.js: [INFO] [ENV] could not capture Assert_failure: Misc.Fatal_error 175 - >> Fatal error: Not_found unbound at toplevel 176 - node_mime_test.js: [INFO] [ENV] could not capture Not_found: Misc.Fatal_error 177 - >> Fatal error: Out_of_memory unbound at toplevel 178 - node_mime_test.js: [INFO] [ENV] could not capture Out_of_memory: Misc.Fatal_error 179 - >> Fatal error: Sys_blocked_io unbound at toplevel 180 - node_mime_test.js: [INFO] [ENV] could not capture Sys_blocked_io: Misc.Fatal_error 181 - >> Fatal error: Undefined_recursive_module unbound at toplevel 182 - node_mime_test.js: [INFO] [ENV] could not capture Undefined_recursive_module: Misc.Fatal_error 183 - >> Fatal error: Sys_error unbound at toplevel 184 - node_mime_test.js: [INFO] [ENV] could not capture Sys_error: Misc.Fatal_error 185 - >> Fatal error: Stack_overflow unbound at toplevel 186 - node_mime_test.js: [INFO] [ENV] could not capture Stack_overflow: Misc.Fatal_error 187 - >> Fatal error: CamlinternalFormat unbound at toplevel 188 - node_mime_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 189 - >> Fatal error: CamlinternalLazy unbound at toplevel 190 - node_mime_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 191 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 192 - node_mime_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 193 - >> Fatal error: CamlinternalOO unbound at toplevel 194 - node_mime_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 195 - >> Fatal error: Stdlib unbound at toplevel 196 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 197 - >> Fatal error: Std_exit unbound at toplevel 198 - node_mime_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 199 - >> Fatal error: CamlinternalMod unbound at toplevel 200 - node_mime_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 201 - >> Fatal error: CamlinternalFormat unbound at toplevel 202 - node_mime_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 203 - >> Fatal error: CamlinternalLazy unbound at toplevel 204 - node_mime_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 205 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 206 - node_mime_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 207 - >> Fatal error: CamlinternalOO unbound at toplevel 208 - node_mime_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 209 - >> Fatal error: Stdlib unbound at toplevel 210 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 211 - >> Fatal error: Std_exit unbound at toplevel 212 - node_mime_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 213 - >> Fatal error: CamlinternalMod unbound at toplevel 214 - node_mime_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 215 - >> Fatal error: Stdlib__Array unbound at toplevel 216 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Array: Misc.Fatal_error 217 - >> Fatal error: Stdlib__Atomic unbound at toplevel 218 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Atomic: Misc.Fatal_error 219 - >> Fatal error: Stdlib__ArrayLabels unbound at toplevel 220 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__ArrayLabels: Misc.Fatal_error 221 - >> Fatal error: Stdlib__Bool unbound at toplevel 222 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Bool: Misc.Fatal_error 223 - >> Fatal error: Stdlib__Bytes unbound at toplevel 224 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Bytes: Misc.Fatal_error 225 - >> Fatal error: Stdlib__Buffer unbound at toplevel 226 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Buffer: Misc.Fatal_error 227 - >> Fatal error: Stdlib__Bigarray unbound at toplevel 228 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Bigarray: Misc.Fatal_error 229 - >> Fatal error: Stdlib__Arg unbound at toplevel 230 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Arg: Misc.Fatal_error 231 - >> Fatal error: Stdlib__Callback unbound at toplevel 232 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Callback: Misc.Fatal_error 233 - >> Fatal error: Stdlib__Complex unbound at toplevel 234 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Complex: Misc.Fatal_error 235 - >> Fatal error: Stdlib__Char unbound at toplevel 236 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Char: Misc.Fatal_error 237 - >> Fatal error: Stdlib__Digest unbound at toplevel 238 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Digest: Misc.Fatal_error 239 - >> Fatal error: Stdlib__Dynarray unbound at toplevel 240 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Dynarray: Misc.Fatal_error 241 - >> Fatal error: Stdlib__Domain unbound at toplevel 242 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Domain: Misc.Fatal_error 243 - >> Fatal error: Stdlib__Condition unbound at toplevel 244 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Condition: Misc.Fatal_error 245 - >> Fatal error: Stdlib__Either unbound at toplevel 246 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Either: Misc.Fatal_error 247 - >> Fatal error: Stdlib__Filename unbound at toplevel 248 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Filename: Misc.Fatal_error 249 - >> Fatal error: Stdlib__Ephemeron unbound at toplevel 250 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Ephemeron: Misc.Fatal_error 251 - >> Fatal error: Stdlib__Format unbound at toplevel 252 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 253 - >> Fatal error: Stdlib__Gc unbound at toplevel 254 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Gc: Misc.Fatal_error 255 - >> Fatal error: Stdlib__Fun unbound at toplevel 256 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Fun: Misc.Fatal_error 257 - >> Fatal error: Stdlib__Float unbound at toplevel 258 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Float: Misc.Fatal_error 259 - >> Fatal error: Stdlib__Effect unbound at toplevel 260 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Effect: Misc.Fatal_error 261 - >> Fatal error: Stdlib__BytesLabels unbound at toplevel 262 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__BytesLabels: Misc.Fatal_error 263 - >> Fatal error: Stdlib__Iarray unbound at toplevel 264 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Iarray: Misc.Fatal_error 265 - >> Fatal error: Stdlib__Int unbound at toplevel 266 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Int: Misc.Fatal_error 267 - >> Fatal error: Stdlib__In_channel unbound at toplevel 268 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__In_channel: Misc.Fatal_error 269 - >> Fatal error: Stdlib__Int64 unbound at toplevel 270 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Int64: Misc.Fatal_error 271 - >> Fatal error: Stdlib__Lexing unbound at toplevel 272 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Lexing: Misc.Fatal_error 273 - >> Fatal error: Stdlib__Lazy unbound at toplevel 274 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Lazy: Misc.Fatal_error 275 - >> Fatal error: Stdlib__Int32 unbound at toplevel 276 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Int32: Misc.Fatal_error 277 - >> Fatal error: Stdlib__ListLabels unbound at toplevel 278 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__ListLabels: Misc.Fatal_error 279 - >> Fatal error: Stdlib__Marshal unbound at toplevel 280 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Marshal: Misc.Fatal_error 281 - >> Fatal error: Stdlib__Map unbound at toplevel 282 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Map: Misc.Fatal_error 283 - >> Fatal error: Stdlib__Mutex unbound at toplevel 284 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Mutex: Misc.Fatal_error 285 - >> Fatal error: Stdlib__Obj unbound at toplevel 286 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Obj: Misc.Fatal_error 287 - >> Fatal error: Stdlib__Nativeint unbound at toplevel 288 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Nativeint: Misc.Fatal_error 289 - >> Fatal error: Stdlib__MoreLabels unbound at toplevel 290 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__MoreLabels: Misc.Fatal_error 291 - >> Fatal error: Stdlib__List unbound at toplevel 292 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__List: Misc.Fatal_error 293 - >> Fatal error: Stdlib__Option unbound at toplevel 294 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Option: Misc.Fatal_error 295 - >> Fatal error: Stdlib__Pair unbound at toplevel 296 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Pair: Misc.Fatal_error 297 - >> Fatal error: Stdlib__Out_channel unbound at toplevel 298 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Out_channel: Misc.Fatal_error 299 - >> Fatal error: Stdlib__Pqueue unbound at toplevel 300 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Pqueue: Misc.Fatal_error 301 - >> Fatal error: Stdlib__Printf unbound at toplevel 302 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Printf: Misc.Fatal_error 303 - >> Fatal error: Stdlib__Printexc unbound at toplevel 304 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Printexc: Misc.Fatal_error 305 - >> Fatal error: Stdlib__Parsing unbound at toplevel 306 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Parsing: Misc.Fatal_error 307 - >> Fatal error: Stdlib__Random unbound at toplevel 308 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Random: Misc.Fatal_error 309 - >> Fatal error: Stdlib__Result unbound at toplevel 310 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Result: Misc.Fatal_error 311 - >> Fatal error: Stdlib__Repr unbound at toplevel 312 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Repr: Misc.Fatal_error 313 - >> Fatal error: Stdlib__Semaphore unbound at toplevel 314 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Semaphore: Misc.Fatal_error 315 - >> Fatal error: Stdlib__Set unbound at toplevel 316 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Set: Misc.Fatal_error 317 - >> Fatal error: Stdlib__Seq unbound at toplevel 318 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Seq: Misc.Fatal_error 319 - >> Fatal error: Stdlib__Scanf unbound at toplevel 320 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Scanf: Misc.Fatal_error 321 - >> Fatal error: Stdlib__Queue unbound at toplevel 322 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Queue: Misc.Fatal_error 323 - >> Fatal error: Stdlib__StdLabels unbound at toplevel 324 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__StdLabels: Misc.Fatal_error 325 - >> Fatal error: Stdlib__StringLabels unbound at toplevel 326 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__StringLabels: Misc.Fatal_error 327 - >> Fatal error: Stdlib__String unbound at toplevel 328 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__String: Misc.Fatal_error 329 - >> Fatal error: Stdlib__Type unbound at toplevel 330 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Type: Misc.Fatal_error 331 - >> Fatal error: Stdlib__Weak unbound at toplevel 332 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Weak: Misc.Fatal_error 333 - >> Fatal error: Stdlib__Unit unbound at toplevel 334 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Unit: Misc.Fatal_error 335 - >> Fatal error: Stdlib__Uchar unbound at toplevel 336 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Uchar: Misc.Fatal_error 337 - >> Fatal error: Stdlib__Sys unbound at toplevel 338 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 339 - >> Fatal error: Stdlib__Stack unbound at toplevel 340 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Stack: Misc.Fatal_error 341 - >> Fatal error: Stdlib__Oo unbound at toplevel 342 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Oo: Misc.Fatal_error 343 - >> Fatal error: Stdlib__Hashtbl unbound at toplevel 344 - node_mime_test.js: [INFO] [ENV] could not capture Stdlib__Hashtbl: Misc.Fatal_error 345 158 node_mime_test.js: [INFO] setup() finished for env default 346 159 --- Section 1: exec_result Has mime_vals Field --- 347 160 node_mime_test.js: [INFO] execute() for env_id= 348 - node_mime_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=0) 349 - node_mime_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 350 - node_mime_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 351 - node_mime_test.js: [INFO] [ENV] captured x 352 161 node_mime_test.js: [INFO] execute() done for env_id= 353 162 [PASS] has_mime_vals_field: exec_result has mime_vals field 354 163 [PASS] mime_vals_is_list: mime_vals is a list (length=0) ··· 362 171 363 172 --- Section 3: Multiple Executions --- 364 173 node_mime_test.js: [INFO] execute() for env_id= 365 - node_mime_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=1) 366 - node_mime_test.js: [INFO] [ENV] Restoring 1 runtime values for env default 367 - node_mime_test.js: [INFO] [ENV] setvalue x 368 - node_mime_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 369 - node_mime_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 370 - node_mime_test.js: [INFO] [ENV] captured a 371 174 node_mime_test.js: [INFO] execute() done for env_id= 372 175 node_mime_test.js: [INFO] execute() for env_id= 373 - node_mime_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=2) 374 - node_mime_test.js: [INFO] [ENV] Restoring 2 runtime values for env default 375 - node_mime_test.js: [INFO] [ENV] setvalue a 376 - node_mime_test.js: [INFO] [ENV] setvalue x 377 - node_mime_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 378 - node_mime_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 379 - node_mime_test.js: [INFO] [ENV] captured b 380 176 node_mime_test.js: [INFO] execute() done for env_id= 381 177 node_mime_test.js: [INFO] execute() for env_id= 382 - node_mime_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=3) 383 - node_mime_test.js: [INFO] [ENV] Restoring 3 runtime values for env default 384 - node_mime_test.js: [INFO] [ENV] setvalue a 385 - node_mime_test.js: [INFO] [ENV] setvalue b 386 - node_mime_test.js: [INFO] [ENV] setvalue x 387 - node_mime_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 388 - node_mime_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 389 - node_mime_test.js: [INFO] [ENV] captured c 390 178 node_mime_test.js: [INFO] execute() done for env_id= 391 179 [PASS] r1_mime_empty: First exec: mime_vals empty 392 180 [PASS] r2_mime_empty: Second exec: mime_vals empty 393 181 [PASS] r3_mime_empty: Third exec: mime_vals empty 394 182 395 183 --- Section 4: exec_toplevel Has mime_vals --- 396 - node_mime_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=4) 397 - node_mime_test.js: [INFO] [ENV] Restoring 4 runtime values for env default 398 - node_mime_test.js: [INFO] [ENV] setvalue a 399 - node_mime_test.js: [INFO] [ENV] setvalue b 400 - node_mime_test.js: [INFO] [ENV] setvalue c 401 - node_mime_test.js: [INFO] [ENV] setvalue x 402 - node_mime_test.js: [INFO] [ENV] Env.diff found 1 new idents for default 403 - node_mime_test.js: [INFO] [ENV] Capturing 1 new bindings for env default 404 - node_mime_test.js: [INFO] [ENV] captured z 405 184 [PASS] toplevel_has_mime_vals: exec_toplevel_result has mime_vals field 406 185 [PASS] toplevel_mime_vals_list: toplevel mime_vals is a list (length=0) 407 186
-188
test/node/node_ppx_test.expected
··· 148 148 node_ppx_test.js: [INFO] toplevel modules: Std_exit, CamlinternalFormatBasics, CamlinternalLazy, CamlinternalMod, Stdlib, CamlinternalOO, CamlinternalFormat 149 149 node_ppx_test.js: [INFO] init() finished 150 150 node_ppx_test.js: [INFO] setup() for env default... 151 - node_ppx_test.js: [INFO] [ENV] with_env called for default (has_saved_env=false, runtime_values_count=0) 152 151 node_ppx_test.js: [INFO] Fetching stdlib__Format.cmi 153 152 154 153 node_ppx_test.js: [INFO] Fetching stdlib__Sys.cmi ··· 156 155 error while evaluating #enable "pretty";; 157 156 error while evaluating #disable "shortvar";; 158 157 node_ppx_test.js: [INFO] Setup complete 159 - node_ppx_test.js: [INFO] [ENV] Env.diff found 92 new idents for default 160 - node_ppx_test.js: [INFO] [ENV] Capturing 92 new bindings for env default 161 - >> Fatal error: Continuation_already_taken unbound at toplevel 162 - node_ppx_test.js: [INFO] [ENV] could not capture Continuation_already_taken: Misc.Fatal_error 163 - >> Fatal error: Division_by_zero unbound at toplevel 164 - node_ppx_test.js: [INFO] [ENV] could not capture Division_by_zero: Misc.Fatal_error 165 - >> Fatal error: Failure unbound at toplevel 166 - node_ppx_test.js: [INFO] [ENV] could not capture Failure: Misc.Fatal_error 167 - >> Fatal error: Match_failure unbound at toplevel 168 - node_ppx_test.js: [INFO] [ENV] could not capture Match_failure: Misc.Fatal_error 169 - >> Fatal error: Invalid_argument unbound at toplevel 170 - node_ppx_test.js: [INFO] [ENV] could not capture Invalid_argument: Misc.Fatal_error 171 - >> Fatal error: End_of_file unbound at toplevel 172 - node_ppx_test.js: [INFO] [ENV] could not capture End_of_file: Misc.Fatal_error 173 - >> Fatal error: Assert_failure unbound at toplevel 174 - node_ppx_test.js: [INFO] [ENV] could not capture Assert_failure: Misc.Fatal_error 175 - >> Fatal error: Not_found unbound at toplevel 176 - node_ppx_test.js: [INFO] [ENV] could not capture Not_found: Misc.Fatal_error 177 - >> Fatal error: Out_of_memory unbound at toplevel 178 - node_ppx_test.js: [INFO] [ENV] could not capture Out_of_memory: Misc.Fatal_error 179 - >> Fatal error: Sys_blocked_io unbound at toplevel 180 - node_ppx_test.js: [INFO] [ENV] could not capture Sys_blocked_io: Misc.Fatal_error 181 - >> Fatal error: Undefined_recursive_module unbound at toplevel 182 - node_ppx_test.js: [INFO] [ENV] could not capture Undefined_recursive_module: Misc.Fatal_error 183 - >> Fatal error: Sys_error unbound at toplevel 184 - node_ppx_test.js: [INFO] [ENV] could not capture Sys_error: Misc.Fatal_error 185 - >> Fatal error: Stack_overflow unbound at toplevel 186 - node_ppx_test.js: [INFO] [ENV] could not capture Stack_overflow: Misc.Fatal_error 187 - >> Fatal error: CamlinternalFormat unbound at toplevel 188 - node_ppx_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 189 - >> Fatal error: CamlinternalLazy unbound at toplevel 190 - node_ppx_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 191 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 192 - node_ppx_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 193 - >> Fatal error: CamlinternalOO unbound at toplevel 194 - node_ppx_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 195 - >> Fatal error: Stdlib unbound at toplevel 196 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 197 - >> Fatal error: Std_exit unbound at toplevel 198 - node_ppx_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 199 - >> Fatal error: CamlinternalMod unbound at toplevel 200 - node_ppx_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 201 - >> Fatal error: CamlinternalFormat unbound at toplevel 202 - node_ppx_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 203 - >> Fatal error: CamlinternalLazy unbound at toplevel 204 - node_ppx_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 205 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 206 - node_ppx_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 207 - >> Fatal error: CamlinternalOO unbound at toplevel 208 - node_ppx_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 209 - >> Fatal error: Stdlib unbound at toplevel 210 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 211 - >> Fatal error: Std_exit unbound at toplevel 212 - node_ppx_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 213 - >> Fatal error: CamlinternalMod unbound at toplevel 214 - node_ppx_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 215 - >> Fatal error: Stdlib__Array unbound at toplevel 216 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Array: Misc.Fatal_error 217 - >> Fatal error: Stdlib__Atomic unbound at toplevel 218 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Atomic: Misc.Fatal_error 219 - >> Fatal error: Stdlib__ArrayLabels unbound at toplevel 220 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__ArrayLabels: Misc.Fatal_error 221 - >> Fatal error: Stdlib__Bool unbound at toplevel 222 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Bool: Misc.Fatal_error 223 - >> Fatal error: Stdlib__Bytes unbound at toplevel 224 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Bytes: Misc.Fatal_error 225 - >> Fatal error: Stdlib__Buffer unbound at toplevel 226 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Buffer: Misc.Fatal_error 227 - >> Fatal error: Stdlib__Bigarray unbound at toplevel 228 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Bigarray: Misc.Fatal_error 229 - >> Fatal error: Stdlib__Arg unbound at toplevel 230 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Arg: Misc.Fatal_error 231 - >> Fatal error: Stdlib__Callback unbound at toplevel 232 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Callback: Misc.Fatal_error 233 - >> Fatal error: Stdlib__Complex unbound at toplevel 234 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Complex: Misc.Fatal_error 235 - >> Fatal error: Stdlib__Char unbound at toplevel 236 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Char: Misc.Fatal_error 237 - >> Fatal error: Stdlib__Digest unbound at toplevel 238 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Digest: Misc.Fatal_error 239 - >> Fatal error: Stdlib__Dynarray unbound at toplevel 240 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Dynarray: Misc.Fatal_error 241 - >> Fatal error: Stdlib__Domain unbound at toplevel 242 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Domain: Misc.Fatal_error 243 - >> Fatal error: Stdlib__Condition unbound at toplevel 244 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Condition: Misc.Fatal_error 245 - >> Fatal error: Stdlib__Either unbound at toplevel 246 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Either: Misc.Fatal_error 247 - >> Fatal error: Stdlib__Filename unbound at toplevel 248 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Filename: Misc.Fatal_error 249 - >> Fatal error: Stdlib__Ephemeron unbound at toplevel 250 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Ephemeron: Misc.Fatal_error 251 - >> Fatal error: Stdlib__Format unbound at toplevel 252 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 253 - >> Fatal error: Stdlib__Gc unbound at toplevel 254 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Gc: Misc.Fatal_error 255 - >> Fatal error: Stdlib__Fun unbound at toplevel 256 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Fun: Misc.Fatal_error 257 - >> Fatal error: Stdlib__Float unbound at toplevel 258 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Float: Misc.Fatal_error 259 - >> Fatal error: Stdlib__Effect unbound at toplevel 260 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Effect: Misc.Fatal_error 261 - >> Fatal error: Stdlib__BytesLabels unbound at toplevel 262 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__BytesLabels: Misc.Fatal_error 263 - >> Fatal error: Stdlib__Iarray unbound at toplevel 264 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Iarray: Misc.Fatal_error 265 - >> Fatal error: Stdlib__Int unbound at toplevel 266 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Int: Misc.Fatal_error 267 - >> Fatal error: Stdlib__In_channel unbound at toplevel 268 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__In_channel: Misc.Fatal_error 269 - >> Fatal error: Stdlib__Int64 unbound at toplevel 270 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Int64: Misc.Fatal_error 271 - >> Fatal error: Stdlib__Lexing unbound at toplevel 272 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Lexing: Misc.Fatal_error 273 - >> Fatal error: Stdlib__Lazy unbound at toplevel 274 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Lazy: Misc.Fatal_error 275 - >> Fatal error: Stdlib__Int32 unbound at toplevel 276 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Int32: Misc.Fatal_error 277 - >> Fatal error: Stdlib__ListLabels unbound at toplevel 278 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__ListLabels: Misc.Fatal_error 279 - >> Fatal error: Stdlib__Marshal unbound at toplevel 280 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Marshal: Misc.Fatal_error 281 - >> Fatal error: Stdlib__Map unbound at toplevel 282 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Map: Misc.Fatal_error 283 - >> Fatal error: Stdlib__Mutex unbound at toplevel 284 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Mutex: Misc.Fatal_error 285 - >> Fatal error: Stdlib__Obj unbound at toplevel 286 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Obj: Misc.Fatal_error 287 - >> Fatal error: Stdlib__Nativeint unbound at toplevel 288 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Nativeint: Misc.Fatal_error 289 - >> Fatal error: Stdlib__MoreLabels unbound at toplevel 290 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__MoreLabels: Misc.Fatal_error 291 - >> Fatal error: Stdlib__List unbound at toplevel 292 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__List: Misc.Fatal_error 293 - >> Fatal error: Stdlib__Option unbound at toplevel 294 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Option: Misc.Fatal_error 295 - >> Fatal error: Stdlib__Pair unbound at toplevel 296 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Pair: Misc.Fatal_error 297 - >> Fatal error: Stdlib__Out_channel unbound at toplevel 298 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Out_channel: Misc.Fatal_error 299 - >> Fatal error: Stdlib__Pqueue unbound at toplevel 300 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Pqueue: Misc.Fatal_error 301 - >> Fatal error: Stdlib__Printf unbound at toplevel 302 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Printf: Misc.Fatal_error 303 - >> Fatal error: Stdlib__Printexc unbound at toplevel 304 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Printexc: Misc.Fatal_error 305 - >> Fatal error: Stdlib__Parsing unbound at toplevel 306 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Parsing: Misc.Fatal_error 307 - >> Fatal error: Stdlib__Random unbound at toplevel 308 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Random: Misc.Fatal_error 309 - >> Fatal error: Stdlib__Result unbound at toplevel 310 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Result: Misc.Fatal_error 311 - >> Fatal error: Stdlib__Repr unbound at toplevel 312 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Repr: Misc.Fatal_error 313 - >> Fatal error: Stdlib__Semaphore unbound at toplevel 314 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Semaphore: Misc.Fatal_error 315 - >> Fatal error: Stdlib__Set unbound at toplevel 316 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Set: Misc.Fatal_error 317 - >> Fatal error: Stdlib__Seq unbound at toplevel 318 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Seq: Misc.Fatal_error 319 - >> Fatal error: Stdlib__Scanf unbound at toplevel 320 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Scanf: Misc.Fatal_error 321 - >> Fatal error: Stdlib__Queue unbound at toplevel 322 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Queue: Misc.Fatal_error 323 - >> Fatal error: Stdlib__StdLabels unbound at toplevel 324 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__StdLabels: Misc.Fatal_error 325 - >> Fatal error: Stdlib__StringLabels unbound at toplevel 326 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__StringLabels: Misc.Fatal_error 327 - >> Fatal error: Stdlib__String unbound at toplevel 328 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__String: Misc.Fatal_error 329 - >> Fatal error: Stdlib__Type unbound at toplevel 330 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Type: Misc.Fatal_error 331 - >> Fatal error: Stdlib__Weak unbound at toplevel 332 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Weak: Misc.Fatal_error 333 - >> Fatal error: Stdlib__Unit unbound at toplevel 334 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Unit: Misc.Fatal_error 335 - >> Fatal error: Stdlib__Uchar unbound at toplevel 336 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Uchar: Misc.Fatal_error 337 - >> Fatal error: Stdlib__Sys unbound at toplevel 338 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 339 - >> Fatal error: Stdlib__Stack unbound at toplevel 340 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Stack: Misc.Fatal_error 341 - >> Fatal error: Stdlib__Oo unbound at toplevel 342 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Oo: Misc.Fatal_error 343 - >> Fatal error: Stdlib__Hashtbl unbound at toplevel 344 - node_ppx_test.js: [INFO] [ENV] could not capture Stdlib__Hashtbl: Misc.Fatal_error 345 158 node_ppx_test.js: [INFO] setup() finished for env default 346 159 --- Loading PPX dynamically --- 347 - node_ppx_test.js: [INFO] [ENV] with_env called for default (has_saved_env=true, runtime_values_count=0) 348 160 node_ppx_test.js: [INFO] Custom #require: loading ppx_deriving.show 349 161 Loading package ppx_deriving.show 350 162 lib.dir: show
-187
test/node/node_test.expected
··· 165 165 node_test.js: [INFO] async_get: _opam/lib/ocaml/camlinternalFormat.cmi 166 166 node_test.js: [INFO] init() finished 167 167 node_test.js: [INFO] setup() for env default... 168 - node_test.js: [INFO] [ENV] with_env called for default (has_saved_env=false, runtime_values_count=0) 169 168 node_test.js: [INFO] Fetching stdlib__Format.cmi 170 169 171 170 node_test.js: [INFO] sync_get: _opam/lib/ocaml/stdlib__Format.cmi ··· 175 174 error while evaluating #enable "pretty";; 176 175 error while evaluating #disable "shortvar";; 177 176 node_test.js: [INFO] Setup complete 178 - node_test.js: [INFO] [ENV] Env.diff found 92 new idents for default 179 - node_test.js: [INFO] [ENV] Capturing 92 new bindings for env default 180 - >> Fatal error: Continuation_already_taken unbound at toplevel 181 - node_test.js: [INFO] [ENV] could not capture Continuation_already_taken: Misc.Fatal_error 182 - >> Fatal error: Division_by_zero unbound at toplevel 183 - node_test.js: [INFO] [ENV] could not capture Division_by_zero: Misc.Fatal_error 184 - >> Fatal error: Failure unbound at toplevel 185 - node_test.js: [INFO] [ENV] could not capture Failure: Misc.Fatal_error 186 - >> Fatal error: Match_failure unbound at toplevel 187 - node_test.js: [INFO] [ENV] could not capture Match_failure: Misc.Fatal_error 188 - >> Fatal error: Invalid_argument unbound at toplevel 189 - node_test.js: [INFO] [ENV] could not capture Invalid_argument: Misc.Fatal_error 190 - >> Fatal error: End_of_file unbound at toplevel 191 - node_test.js: [INFO] [ENV] could not capture End_of_file: Misc.Fatal_error 192 - >> Fatal error: Assert_failure unbound at toplevel 193 - node_test.js: [INFO] [ENV] could not capture Assert_failure: Misc.Fatal_error 194 - >> Fatal error: Not_found unbound at toplevel 195 - node_test.js: [INFO] [ENV] could not capture Not_found: Misc.Fatal_error 196 - >> Fatal error: Out_of_memory unbound at toplevel 197 - node_test.js: [INFO] [ENV] could not capture Out_of_memory: Misc.Fatal_error 198 - >> Fatal error: Sys_blocked_io unbound at toplevel 199 - node_test.js: [INFO] [ENV] could not capture Sys_blocked_io: Misc.Fatal_error 200 - >> Fatal error: Undefined_recursive_module unbound at toplevel 201 - node_test.js: [INFO] [ENV] could not capture Undefined_recursive_module: Misc.Fatal_error 202 - >> Fatal error: Sys_error unbound at toplevel 203 - node_test.js: [INFO] [ENV] could not capture Sys_error: Misc.Fatal_error 204 - >> Fatal error: Stack_overflow unbound at toplevel 205 - node_test.js: [INFO] [ENV] could not capture Stack_overflow: Misc.Fatal_error 206 - >> Fatal error: CamlinternalFormat unbound at toplevel 207 - node_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 208 - >> Fatal error: CamlinternalLazy unbound at toplevel 209 - node_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 210 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 211 - node_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 212 - >> Fatal error: CamlinternalOO unbound at toplevel 213 - node_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 214 - >> Fatal error: Stdlib unbound at toplevel 215 - node_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 216 - >> Fatal error: Std_exit unbound at toplevel 217 - node_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 218 - >> Fatal error: CamlinternalMod unbound at toplevel 219 - node_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 220 - >> Fatal error: CamlinternalFormat unbound at toplevel 221 - node_test.js: [INFO] [ENV] could not capture CamlinternalFormat: Misc.Fatal_error 222 - >> Fatal error: CamlinternalLazy unbound at toplevel 223 - node_test.js: [INFO] [ENV] could not capture CamlinternalLazy: Misc.Fatal_error 224 - >> Fatal error: CamlinternalFormatBasics unbound at toplevel 225 - node_test.js: [INFO] [ENV] could not capture CamlinternalFormatBasics: Misc.Fatal_error 226 - >> Fatal error: CamlinternalOO unbound at toplevel 227 - node_test.js: [INFO] [ENV] could not capture CamlinternalOO: Misc.Fatal_error 228 - >> Fatal error: Stdlib unbound at toplevel 229 - node_test.js: [INFO] [ENV] could not capture Stdlib: Misc.Fatal_error 230 - >> Fatal error: Std_exit unbound at toplevel 231 - node_test.js: [INFO] [ENV] could not capture Std_exit: Misc.Fatal_error 232 - >> Fatal error: CamlinternalMod unbound at toplevel 233 - node_test.js: [INFO] [ENV] could not capture CamlinternalMod: Misc.Fatal_error 234 - >> Fatal error: Stdlib__Array unbound at toplevel 235 - node_test.js: [INFO] [ENV] could not capture Stdlib__Array: Misc.Fatal_error 236 - >> Fatal error: Stdlib__Atomic unbound at toplevel 237 - node_test.js: [INFO] [ENV] could not capture Stdlib__Atomic: Misc.Fatal_error 238 - >> Fatal error: Stdlib__ArrayLabels unbound at toplevel 239 - node_test.js: [INFO] [ENV] could not capture Stdlib__ArrayLabels: Misc.Fatal_error 240 - >> Fatal error: Stdlib__Bool unbound at toplevel 241 - node_test.js: [INFO] [ENV] could not capture Stdlib__Bool: Misc.Fatal_error 242 - >> Fatal error: Stdlib__Bytes unbound at toplevel 243 - node_test.js: [INFO] [ENV] could not capture Stdlib__Bytes: Misc.Fatal_error 244 - >> Fatal error: Stdlib__Buffer unbound at toplevel 245 - node_test.js: [INFO] [ENV] could not capture Stdlib__Buffer: Misc.Fatal_error 246 - >> Fatal error: Stdlib__Bigarray unbound at toplevel 247 - node_test.js: [INFO] [ENV] could not capture Stdlib__Bigarray: Misc.Fatal_error 248 - >> Fatal error: Stdlib__Arg unbound at toplevel 249 - node_test.js: [INFO] [ENV] could not capture Stdlib__Arg: Misc.Fatal_error 250 - >> Fatal error: Stdlib__Callback unbound at toplevel 251 - node_test.js: [INFO] [ENV] could not capture Stdlib__Callback: Misc.Fatal_error 252 - >> Fatal error: Stdlib__Complex unbound at toplevel 253 - node_test.js: [INFO] [ENV] could not capture Stdlib__Complex: Misc.Fatal_error 254 - >> Fatal error: Stdlib__Char unbound at toplevel 255 - node_test.js: [INFO] [ENV] could not capture Stdlib__Char: Misc.Fatal_error 256 - >> Fatal error: Stdlib__Digest unbound at toplevel 257 - node_test.js: [INFO] [ENV] could not capture Stdlib__Digest: Misc.Fatal_error 258 - >> Fatal error: Stdlib__Dynarray unbound at toplevel 259 - node_test.js: [INFO] [ENV] could not capture Stdlib__Dynarray: Misc.Fatal_error 260 - >> Fatal error: Stdlib__Domain unbound at toplevel 261 - node_test.js: [INFO] [ENV] could not capture Stdlib__Domain: Misc.Fatal_error 262 - >> Fatal error: Stdlib__Condition unbound at toplevel 263 - node_test.js: [INFO] [ENV] could not capture Stdlib__Condition: Misc.Fatal_error 264 - >> Fatal error: Stdlib__Either unbound at toplevel 265 - node_test.js: [INFO] [ENV] could not capture Stdlib__Either: Misc.Fatal_error 266 - >> Fatal error: Stdlib__Filename unbound at toplevel 267 - node_test.js: [INFO] [ENV] could not capture Stdlib__Filename: Misc.Fatal_error 268 - >> Fatal error: Stdlib__Ephemeron unbound at toplevel 269 - node_test.js: [INFO] [ENV] could not capture Stdlib__Ephemeron: Misc.Fatal_error 270 - >> Fatal error: Stdlib__Format unbound at toplevel 271 - node_test.js: [INFO] [ENV] could not capture Stdlib__Format: Misc.Fatal_error 272 - >> Fatal error: Stdlib__Gc unbound at toplevel 273 - node_test.js: [INFO] [ENV] could not capture Stdlib__Gc: Misc.Fatal_error 274 - >> Fatal error: Stdlib__Fun unbound at toplevel 275 - node_test.js: [INFO] [ENV] could not capture Stdlib__Fun: Misc.Fatal_error 276 - >> Fatal error: Stdlib__Float unbound at toplevel 277 - node_test.js: [INFO] [ENV] could not capture Stdlib__Float: Misc.Fatal_error 278 - >> Fatal error: Stdlib__Effect unbound at toplevel 279 - node_test.js: [INFO] [ENV] could not capture Stdlib__Effect: Misc.Fatal_error 280 - >> Fatal error: Stdlib__BytesLabels unbound at toplevel 281 - node_test.js: [INFO] [ENV] could not capture Stdlib__BytesLabels: Misc.Fatal_error 282 - >> Fatal error: Stdlib__Iarray unbound at toplevel 283 - node_test.js: [INFO] [ENV] could not capture Stdlib__Iarray: Misc.Fatal_error 284 - >> Fatal error: Stdlib__Int unbound at toplevel 285 - node_test.js: [INFO] [ENV] could not capture Stdlib__Int: Misc.Fatal_error 286 - >> Fatal error: Stdlib__In_channel unbound at toplevel 287 - node_test.js: [INFO] [ENV] could not capture Stdlib__In_channel: Misc.Fatal_error 288 - >> Fatal error: Stdlib__Int64 unbound at toplevel 289 - node_test.js: [INFO] [ENV] could not capture Stdlib__Int64: Misc.Fatal_error 290 - >> Fatal error: Stdlib__Lexing unbound at toplevel 291 - node_test.js: [INFO] [ENV] could not capture Stdlib__Lexing: Misc.Fatal_error 292 - >> Fatal error: Stdlib__Lazy unbound at toplevel 293 - node_test.js: [INFO] [ENV] could not capture Stdlib__Lazy: Misc.Fatal_error 294 - >> Fatal error: Stdlib__Int32 unbound at toplevel 295 - node_test.js: [INFO] [ENV] could not capture Stdlib__Int32: Misc.Fatal_error 296 - >> Fatal error: Stdlib__ListLabels unbound at toplevel 297 - node_test.js: [INFO] [ENV] could not capture Stdlib__ListLabels: Misc.Fatal_error 298 - >> Fatal error: Stdlib__Marshal unbound at toplevel 299 - node_test.js: [INFO] [ENV] could not capture Stdlib__Marshal: Misc.Fatal_error 300 - >> Fatal error: Stdlib__Map unbound at toplevel 301 - node_test.js: [INFO] [ENV] could not capture Stdlib__Map: Misc.Fatal_error 302 - >> Fatal error: Stdlib__Mutex unbound at toplevel 303 - node_test.js: [INFO] [ENV] could not capture Stdlib__Mutex: Misc.Fatal_error 304 - >> Fatal error: Stdlib__Obj unbound at toplevel 305 - node_test.js: [INFO] [ENV] could not capture Stdlib__Obj: Misc.Fatal_error 306 - >> Fatal error: Stdlib__Nativeint unbound at toplevel 307 - node_test.js: [INFO] [ENV] could not capture Stdlib__Nativeint: Misc.Fatal_error 308 - >> Fatal error: Stdlib__MoreLabels unbound at toplevel 309 - node_test.js: [INFO] [ENV] could not capture Stdlib__MoreLabels: Misc.Fatal_error 310 - >> Fatal error: Stdlib__List unbound at toplevel 311 - node_test.js: [INFO] [ENV] could not capture Stdlib__List: Misc.Fatal_error 312 - >> Fatal error: Stdlib__Option unbound at toplevel 313 - node_test.js: [INFO] [ENV] could not capture Stdlib__Option: Misc.Fatal_error 314 - >> Fatal error: Stdlib__Pair unbound at toplevel 315 - node_test.js: [INFO] [ENV] could not capture Stdlib__Pair: Misc.Fatal_error 316 - >> Fatal error: Stdlib__Out_channel unbound at toplevel 317 - node_test.js: [INFO] [ENV] could not capture Stdlib__Out_channel: Misc.Fatal_error 318 - >> Fatal error: Stdlib__Pqueue unbound at toplevel 319 - node_test.js: [INFO] [ENV] could not capture Stdlib__Pqueue: Misc.Fatal_error 320 - >> Fatal error: Stdlib__Printf unbound at toplevel 321 - node_test.js: [INFO] [ENV] could not capture Stdlib__Printf: Misc.Fatal_error 322 - >> Fatal error: Stdlib__Printexc unbound at toplevel 323 - node_test.js: [INFO] [ENV] could not capture Stdlib__Printexc: Misc.Fatal_error 324 - >> Fatal error: Stdlib__Parsing unbound at toplevel 325 - node_test.js: [INFO] [ENV] could not capture Stdlib__Parsing: Misc.Fatal_error 326 - >> Fatal error: Stdlib__Random unbound at toplevel 327 - node_test.js: [INFO] [ENV] could not capture Stdlib__Random: Misc.Fatal_error 328 - >> Fatal error: Stdlib__Result unbound at toplevel 329 - node_test.js: [INFO] [ENV] could not capture Stdlib__Result: Misc.Fatal_error 330 - >> Fatal error: Stdlib__Repr unbound at toplevel 331 - node_test.js: [INFO] [ENV] could not capture Stdlib__Repr: Misc.Fatal_error 332 - >> Fatal error: Stdlib__Semaphore unbound at toplevel 333 - node_test.js: [INFO] [ENV] could not capture Stdlib__Semaphore: Misc.Fatal_error 334 - >> Fatal error: Stdlib__Set unbound at toplevel 335 - node_test.js: [INFO] [ENV] could not capture Stdlib__Set: Misc.Fatal_error 336 - >> Fatal error: Stdlib__Seq unbound at toplevel 337 - node_test.js: [INFO] [ENV] could not capture Stdlib__Seq: Misc.Fatal_error 338 - >> Fatal error: Stdlib__Scanf unbound at toplevel 339 - node_test.js: [INFO] [ENV] could not capture Stdlib__Scanf: Misc.Fatal_error 340 - >> Fatal error: Stdlib__Queue unbound at toplevel 341 - node_test.js: [INFO] [ENV] could not capture Stdlib__Queue: Misc.Fatal_error 342 - >> Fatal error: Stdlib__StdLabels unbound at toplevel 343 - node_test.js: [INFO] [ENV] could not capture Stdlib__StdLabels: Misc.Fatal_error 344 - >> Fatal error: Stdlib__StringLabels unbound at toplevel 345 - node_test.js: [INFO] [ENV] could not capture Stdlib__StringLabels: Misc.Fatal_error 346 - >> Fatal error: Stdlib__String unbound at toplevel 347 - node_test.js: [INFO] [ENV] could not capture Stdlib__String: Misc.Fatal_error 348 - >> Fatal error: Stdlib__Type unbound at toplevel 349 - node_test.js: [INFO] [ENV] could not capture Stdlib__Type: Misc.Fatal_error 350 - >> Fatal error: Stdlib__Weak unbound at toplevel 351 - node_test.js: [INFO] [ENV] could not capture Stdlib__Weak: Misc.Fatal_error 352 - >> Fatal error: Stdlib__Unit unbound at toplevel 353 - node_test.js: [INFO] [ENV] could not capture Stdlib__Unit: Misc.Fatal_error 354 - >> Fatal error: Stdlib__Uchar unbound at toplevel 355 - node_test.js: [INFO] [ENV] could not capture Stdlib__Uchar: Misc.Fatal_error 356 - >> Fatal error: Stdlib__Sys unbound at toplevel 357 - node_test.js: [INFO] [ENV] could not capture Stdlib__Sys: Misc.Fatal_error 358 - >> Fatal error: Stdlib__Stack unbound at toplevel 359 - node_test.js: [INFO] [ENV] could not capture Stdlib__Stack: Misc.Fatal_error 360 - >> Fatal error: Stdlib__Oo unbound at toplevel 361 - node_test.js: [INFO] [ENV] could not capture Stdlib__Oo: Misc.Fatal_error 362 - >> Fatal error: Stdlib__Hashtbl unbound at toplevel 363 - node_test.js: [INFO] [ENV] could not capture Stdlib__Hashtbl: Misc.Fatal_error 364 177 Loading package base 365 178 lib.dir: None 366 179 Loading package base.base_internalhash_types