CCSDS Frame Security Report (FSR)
0
fork

Configure Feed

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

csv: rename from csvt

Drops the redundant "t" suffix. Library name, opam package, module
(Csvt -> Csv), and directory all rename in lockstep. Every downstream
reference in interop tests, libraries, and docs updated.

+3 -3
+1 -1
test/interop/cryptolib/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries fsr csvt alcotest) 3 + (libraries fsr csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
test/interop/cryptolib/test.ml
··· 23 23 let bool_of_int n = n <> 0 24 24 25 25 let vector_codec = 26 - Csvt.( 26 + Csv.( 27 27 Row.( 28 28 obj (fun name alarm bad_sn bad_mac bad_sa spi arsn_lsb word_hex -> 29 29 { ··· 47 47 |> finish)) 48 48 49 49 let parse_vectors () = 50 - match Csvt.decode_file vector_codec (trace "vectors.csv") with 50 + match Csv.decode_file vector_codec (trace "vectors.csv") with 51 51 | Ok vs -> vs 52 52 | Error e -> Alcotest.failf "failed to parse vectors.csv: %s" e 53 53