diff options
author | Son Ho | 2021-12-07 17:49:25 +0100 |
---|---|---|
committer | Son Ho | 2021-12-07 17:49:25 +0100 |
commit | e3c247adacb1702e9846c7ca02d80a7f96a2abf4 (patch) | |
tree | 0dfff98ca841c326afc8d22486e70a516f6b7a43 /Makefile | |
parent | 7352e6132d1ce00809b9b2b85bea8eac2c7bf1b7 (diff) |
Update the Makefile to make sure the execution trace always remains the
same
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ all: - dune build src/main.exe && dune exec src/main.exe + dune build src/main.exe && \ + dune exec src/main.exe > trace_current.txt && \ + cmp trace_reference.txt trace_current.txt doc: dune build @doc |