summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)