The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

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

Reformat ocamltest lines for long-line

+27 -12
+6 -3
testsuite/tests/opaque/test.ml
··· 4 4 5 5 * setup-ocamlopt.byte-build-env 6 6 ** script 7 - script = "cp -r ${test_source_directory}/fst ${test_source_directory}/intf ${test_source_directory}/snd ${test_build_directory}" 7 + script = "cp -r ${test_source_directory}/fst ${test_source_directory}/intf \ 8 + ${test_source_directory}/snd ${test_build_directory}" 8 9 *** ocamlopt.byte 9 10 flags = "-I intf -opaque" 10 11 all_modules = "intf/opaque_intf.mli" ··· 12 13 flags = "-I intf" 13 14 all_modules = "intf/opaque_impl.mli intf/regular.mli" 14 15 ***** script 15 - script = "cp intf/opaque_intf.cmi intf/opaque_impl.cmi intf/regular.cmi intf/opaque_intf.mli intf/opaque_impl.mli intf/regular.mli fst" 16 + script = "cp intf/opaque_intf.cmi intf/opaque_impl.cmi intf/regular.cmi \ 17 + intf/opaque_intf.mli intf/opaque_impl.mli intf/regular.mli fst" 16 18 ****** script 17 - script = "cp intf/opaque_intf.cmi intf/opaque_impl.cmi intf/regular.cmi intf/opaque_intf.mli intf/opaque_impl.mli intf/regular.mli snd" 19 + script = "cp intf/opaque_intf.cmi intf/opaque_impl.cmi intf/regular.cmi \ 20 + intf/opaque_intf.mli intf/opaque_impl.mli intf/regular.mli snd" 18 21 ******* ocamlopt.byte 19 22 flags = "-I fst -opaque" 20 23 all_modules = "fst/opaque_impl.ml"
+4 -2
testsuite/tests/output-complete-obj/test.ml
··· 8 8 flags = "-w a -output-complete-obj" 9 9 program = "test.ml.bc.${objext}" 10 10 **** script 11 - script = "${mkexe} -I${ocamlsrcdir}/byterun -o test.ml_bc_stub.exe test.ml.bc.${objext} ${nativecc_libs} test.ml_stub.c" 11 + script = "${mkexe} -I${ocamlsrcdir}/byterun -o test.ml_bc_stub.exe \ 12 + test.ml.bc.${objext} ${nativecc_libs} test.ml_stub.c" 12 13 output = "${compiler_output}" 13 14 ***** run 14 15 program = "./test.ml_bc_stub.exe" ··· 19 20 flags = "-w a -output-complete-obj" 20 21 program = "test.ml.exe.${objext}" 21 22 **** script 22 - script = "${mkexe} -I${ocamlsrcdir}/byterun -o test.ml_stub.exe test.ml.exe.${objext} ${bytecc_libs} test.ml_stub.c" 23 + script = "${mkexe} -I${ocamlsrcdir}/byterun -o test.ml_stub.exe \ 24 + test.ml.exe.${objext} ${bytecc_libs} test.ml_stub.c" 23 25 output = "${compiler_output}" 24 26 ***** run 25 27 program = "./test.ml_stub.exe"
+2 -1
testsuite/tests/tool-lexyacc/main.ml
··· 1 1 (* TEST 2 - modules = "syntax.ml gram_aux.ml grammar.mly scan_aux.ml scanner.mll lexgen.ml output.ml" 2 + modules = "syntax.ml gram_aux.ml grammar.mly scan_aux.ml scanner.mll \ 3 + lexgen.ml output.ml" 3 4 files = "input" 4 5 arguments = "input" 5 6 ocamllex_flags = " -q "
+3 -1
testsuite/tests/typing-sigsubst/test_locations.ml
··· 1 1 (* TEST 2 - files = "test_functor.ml test_loc_modtype_type_eq.ml test_loc_modtype_type_subst.ml test_loc_type_eq.ml test_loc_type_subst.ml" 2 + files = "test_functor.ml test_loc_modtype_type_eq.ml \ 3 + test_loc_modtype_type_subst.ml test_loc_type_eq.ml \ 4 + test_loc_type_subst.ml" 3 5 * setup-ocamlc.byte-build-env 4 6 ** ocamlc.byte 5 7 module = "test_functor.ml"