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
9(library
10 (name test_corpus)
11 (libraries gpx)
12 (inline_tests)
13 (preprocess
14 (pps ppx_expect))
15 (modules test_corpus))
16
17;; Alcotest suite for Unix and Eio comparison
18
19(executable
20 (public_name corpus_test)
21 (name test_corpus_unix_eio)
22 (libraries gpx gpx_unix gpx_eio alcotest eio_main)
23 (optional)
24 (modules test_corpus_unix_eio))