File: test_pk_runner.ml

package info (click to toggle)
ocaml-mirage-crypto 2.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,524 kB
  • sloc: ansic: 91,925; ml: 9,700; makefile: 5
file content (13 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
open OUnit2

let suite =
  "All" >::: [
    "Numeric" >::: Test_numeric.suite;
    "DHE" >::: Test_dh.suite;
    "DSA" >::: Test_dsa.suite;
    "RSA" >::: Test_rsa.suite;
  ]

let () =
  Mirage_crypto_rng_unix.use_default ();
  run_test_tt_main suite