Skip to content

Commit 61bec37

Browse files
authored
Don't depend on LANG for running tests (#6853)
I have test failing because of incorrect output: 'Aucun fichier ou dossier de ce nom' instead of 'No such file or directory' Ensure dune is called with `LANG=C` to avoid such problem.
2 parents b0a269e + 40759d8 commit 61bec37

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

dune

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
(ocamlopt_flags (:standard -g -p -w -39))
44
(flags (:standard -w -39))
55
)
6-
(dev (flags (:standard -g -w -39)))
6+
(dev
7+
(flags (:standard -g -w -39))
8+
(env-vars (LANG C)))
79
(release
810
(flags (:standard -w -39-6@5))
9-
(env-vars (ALCOTEST_COMPACT 1))
11+
(env-vars (ALCOTEST_COMPACT 1)
12+
(LANG C))
1013
)
1114
)
1215

0 commit comments

Comments
 (0)