Skip to content
Snippets Groups Projects
Commit 39bd023d authored by Razvan Deaconescu's avatar Razvan Deaconescu
Browse files

tests: Use available locale LC_ALL=C


The `tests/run_all_tests.sh` script uses the `en_US.UTF-8` locale. This
may not be available on certain systems, requiring installation. Replace
it with the use of the generally available `C` locale.

Signed-off-by: default avatarRazvan Deaconescu <razvan.deaconescu@upb.ro>
parent 8012d5dc
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,6 @@ total_grade=$( (echo "scale=0"; echo "$total / 10") | bc )
echo ""
echo -n "Total: "
echo -n " "
LC_ALL=en_US.UTF-8 printf "%3d/100\n" "$total_grade"
LC_ALL=C printf "%3d/100\n" "$total_grade"
rm results.txt
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