Skip to content
Snippets Groups Projects
Commit 98dae4ff authored by Erwan Jahier's avatar Erwan Jahier
Browse files

Fix the locale before running tests in order to make sure that sort

behaves in the same manner on all configurations.
parent 7e715075
No related branches found
No related tags found
No related merge requests found
......@@ -5,13 +5,13 @@ LC2=../lus2lic --compile-all-items
NL="----------------------------------------------------------------------\\n"
filter_line=grep -v Opening\ file
OK_LUS=$(shell find should_work -name "*.lus" -print | sort -n)
OK_LUS=$(shell find should_work -name "*.lus" -print | LC_ALL=C sort -n)
KO_LUS=$(shell find should_fail -name "*.lus" -print | sort -n)
KO_LUS=$(shell find should_fail -name "*.lus" -print | LC_ALL=C sort -n)
ALL_LUS=$(OK_LUS) $(KO_LUS)
LIC=$(shell find should_work -name "*.lic" -print | sort -n)
LIC=$(shell find should_work -name "*.lic" -print | LC_ALL=C sort -n)
when:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment