lol

dotnet: force ICU to be loaded during tests

+3 -1
+3 -1
pkgs/development/compilers/dotnet/common.nix
··· 71 71 export DOTNET_ROOT=${runtime} 72 72 '' + run); 73 73 74 + # Setting LANG to something other than 'C' forces the runtime to search 75 + # for ICU, which will be required in most user environments. 74 76 checkConsoleOutput = command: '' 75 - output="$(${command})" 77 + output="$(LANG=C.UTF-8 ${command})" 76 78 # yes, older SDKs omit the comma 77 79 [[ "$output" =~ Hello,?\ World! ]] && touch "$out" 78 80 '';