From 32ec7e1e2161fcead85f1bbe76136d38d425189b Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Thu, 11 Mar 2021 03:04:57 +0900 Subject: [PATCH] test: enable locale test for asan build (#28085) --- spec-main/chromium-spec.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spec-main/chromium-spec.ts b/spec-main/chromium-spec.ts index 844996c2b756..d75393206439 100644 --- a/spec-main/chromium-spec.ts +++ b/spec-main/chromium-spec.ts @@ -338,8 +338,7 @@ describe('command line switches', () => { // The LC_ALL env should not be set to DOM locale string. expect(lcAll).to.not.equal(app.getLocale()); }); - // TODO(jeremy): figure out why this times out under ASan - ifit(process.platform === 'linux' && !process.env.IS_ASAN)('should not change LC_ALL', async () => testLocale('fr', lcAll, true)); + ifit(process.platform === 'linux')('should not change LC_ALL', async () => testLocale('fr', lcAll, true)); ifit(process.platform === 'linux')('should not change LC_ALL when setting invalid locale', async () => testLocale('asdfkl', lcAll, true)); ifit(process.platform === 'linux')('should not change LC_ALL when --lang is not set', async () => testLocale('', lcAll, true)); });