GPS Exchange Format library/CLI in OCaml
1(executable
2 (public_name test_gpx)
3 (name test_gpx)
4 (libraries gpx gpx_unix)
5 (modules test_gpx))
6
7;; ppx_expect inline tests
8(library
9 (name test_corpus)
10 (libraries gpx)
11 (inline_tests)
12 (preprocess (pps ppx_expect))
13 (modules test_corpus))
14
15;; Alcotest suite for Unix and Eio comparison
16(executable
17 (public_name corpus_test)
18 (name test_corpus_unix_eio)
19 (libraries gpx gpx_unix gpx_eio alcotest eio_main)
20 (optional)
21 (modules test_corpus_unix_eio))