diff options
author | Sergey Andreenko <seandree@microsoft.com> | 2019-03-06 23:09:11 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-06 23:09:11 -0800 |
commit | 8e39d114c9f9733f3337dc678cd2344631dd4742 (patch) | |
tree | 469cb1de23700318ac0cb0048eda9bc6862ba7e8 /tests/scripts | |
parent | a8e9f22240cbd0ac75f119a05d92ccfb19342940 (diff) | |
download | coreclr-8e39d114c9f9733f3337dc678cd2344631dd4742.tar.gz coreclr-8e39d114c9f9733f3337dc678cd2344631dd4742.tar.bz2 coreclr-8e39d114c9f9733f3337dc678cd2344631dd4742.zip |
Ignore warning in another build script. (#23082)
Diffstat (limited to 'tests/scripts')
-rw-r--r-- | tests/scripts/run-corefx-tests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/scripts/run-corefx-tests.py b/tests/scripts/run-corefx-tests.py index 21ca3c2023..a4e691df8a 100644 --- a/tests/scripts/run-corefx-tests.py +++ b/tests/scripts/run-corefx-tests.py @@ -377,6 +377,10 @@ def main(args): if not Is_windows: command += ' /p:TestWithLocalNativeLibraries=true' + if not Is_windows and (arch == 'arm' or arch == 'arm64'): + # It is needed under docker where LC_ALL is not configured. + command += ' --warnAsError false' + # Run the corefx test build and run the tests themselves. log(command) |