aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJüri Valdmann <juri.valdmann@qt.io>2017-05-23 14:50:42 +0200
committerJüri Valdmann <juri.valdmann@qt.io>2017-05-23 13:26:50 +0000
commitbfa220843d3d04bb9be1e1cf35d7e4dd0533df5e (patch)
treed3ced996c110a4f9060e5b6e3f4fa24ecd399599 /tests
parent4b71719d1c02e484192e5b840e0937e1778d33c2 (diff)
Set LC_TIME in ecmascripttests/test262.py
One test fails with LC_TIME=et_EE.UTF-8. The script already sets LANG, but LC_TIME has higher precedence. Change-Id: Ifdb37a1a9d69415d34883343e761d23c6353ef24 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/auto/qml/ecmascripttests/test262.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/qml/ecmascripttests/test262.py b/tests/auto/qml/ecmascripttests/test262.py
index 99f029cffd..9f0a7c1dee 100755
--- a/tests/auto/qml/ecmascripttests/test262.py
+++ b/tests/auto/qml/ecmascripttests/test262.py
@@ -569,6 +569,7 @@ def Main():
#logging.basicConfig(level=logging.DEBUG)
os.environ["TZ"] = "PST8PDT"
os.environ["LANG"] = "en_US.UTF-8"
+ os.environ["LC_TIME"] = "en_US.UTF-8"
parser = BuildOptions()
(options, args) = parser.parse_args()
ValidateOptions(options)