summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2019-03-06 23:09:11 -0800
committerGitHub <noreply@github.com>2019-03-06 23:09:11 -0800
commit8e39d114c9f9733f3337dc678cd2344631dd4742 (patch)
tree469cb1de23700318ac0cb0048eda9bc6862ba7e8 /tests/scripts
parenta8e9f22240cbd0ac75f119a05d92ccfb19342940 (diff)
downloadcoreclr-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.py4
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)