2008-09-09 20:08:45 +00:00
|
|
|
# Copyright 2008 the V8 project authors. All rights reserved.
|
2008-08-22 13:33:59 +00:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above
|
|
|
|
# copyright notice, this list of conditions and the following
|
|
|
|
# disclaimer in the documentation and/or other materials provided
|
|
|
|
# with the distribution.
|
|
|
|
# * Neither the name of Google Inc. nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
import os
|
|
|
|
import re
|
2012-09-24 09:38:46 +00:00
|
|
|
|
|
|
|
from testrunner.local import testsuite
|
|
|
|
from testrunner.objects import testcase
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2009-04-15 01:22:52 +00:00
|
|
|
FILES_PATTERN = re.compile(r"//\s+Files:(.*)")
|
Reland of [date] Add ICU backend for timezone info behind a flag (patchset #1 id:1 of https://codereview.chromium.org/2811103002/ )
Reason for revert:
Reland with tests marked as off in no-i18n mode
Original issue's description:
> Revert of [date] Add ICU backend for timezone info behind a flag (patchset #17 id:320001 of https://codereview.chromium.org/2724373002/ )
>
> Reason for revert:
> Breaks noi18n:
> https://build.chromium.org/p/client.v8/builders/V8%20Linux%20-%20noi18n%20-%20debug/builds/13314
>
> Original issue's description:
> > [date] Add ICU backend for timezone info behind a flag
> >
> > This patch implements a timezone backend which is based on ICU, rather
> > than operating system calls. It can be turned on by passing the
> > --icu-timezone-data flag. The goal here is to take advantage of ICU's
> > data, which is more complete than the data that some system calls expose.
> > For example, without any special code, this patch fixes the time zone
> > of Lord Howe Island to have a correct 30 minute DST offset, rather than
> > 60 minutes as the OS backends assume it to have.
> >
> > Unfortunately, the parenthized timezone name in Date.prototype.toString()
> > differs across platforms. This patch chooses the long timezone name,
> > which matches Windows behavior and might be the most intelligible, but
> > the web compatibility impact is unclear.
> >
> > BUG=v8:6031,v8:2137,v8:6076
> >
> > Review-Url: https://codereview.chromium.org/2724373002
> > Cr-Commit-Position: refs/heads/master@{#44562}
> > Committed: https://chromium.googlesource.com/v8/v8/+/b213f2399038a615cdfbfa0201cddc113d304018
>
> TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,littledan@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6031,v8:2137,v8:6076
>
> Review-Url: https://codereview.chromium.org/2811103002
> Cr-Commit-Position: refs/heads/master@{#44565}
> Committed: https://chromium.googlesource.com/v8/v8/+/13ad50811024ace5623d5d4d13cea4ef21f4affd
TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,machenbach@chromium.org
BUG=v8:6031,v8:2137,v8:6076
Review-Url: https://codereview.chromium.org/2813863002
Cr-Commit-Position: refs/heads/master@{#44575}
2017-04-11 13:17:29 +00:00
|
|
|
ENV_PATTERN = re.compile(r"//\s+Environment Variables:(.*)")
|
2009-07-09 06:39:38 +00:00
|
|
|
SELF_SCRIPT_PATTERN = re.compile(r"//\s+Env: TEST_FILE_NAME")
|
2015-02-10 19:11:44 +00:00
|
|
|
MODULE_PATTERN = re.compile(r"^// MODULE$", flags=re.MULTILINE)
|
2015-05-19 14:51:10 +00:00
|
|
|
NO_HARNESS_PATTERN = re.compile(r"^// NO HARNESS$", flags=re.MULTILINE)
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
|
2012-09-24 09:38:46 +00:00
|
|
|
class MjsunitTestSuite(testsuite.TestSuite):
|
|
|
|
|
|
|
|
def __init__(self, name, root):
|
|
|
|
super(MjsunitTestSuite, self).__init__(name, root)
|
|
|
|
|
|
|
|
def ListTests(self, context):
|
|
|
|
tests = []
|
2015-09-04 23:15:52 +00:00
|
|
|
for dirname, dirs, files in os.walk(self.root, followlinks=True):
|
2012-09-24 09:38:46 +00:00
|
|
|
for dotted in [x for x in dirs if x.startswith('.')]:
|
|
|
|
dirs.remove(dotted)
|
|
|
|
dirs.sort()
|
|
|
|
files.sort()
|
|
|
|
for filename in files:
|
|
|
|
if filename.endswith(".js") and filename != "mjsunit.js":
|
2015-09-17 13:00:57 +00:00
|
|
|
fullpath = os.path.join(dirname, filename)
|
|
|
|
relpath = fullpath[len(self.root) + 1 : -3]
|
|
|
|
testname = relpath.replace(os.path.sep, "/")
|
2012-09-24 09:38:46 +00:00
|
|
|
test = testcase.TestCase(self, testname)
|
|
|
|
tests.append(test)
|
|
|
|
return tests
|
|
|
|
|
2017-10-27 12:55:29 +00:00
|
|
|
def GetParametersForTestCase(self, testcase, context):
|
2012-09-24 09:38:46 +00:00
|
|
|
source = self.GetSourceForTest(testcase)
|
2017-11-16 14:42:28 +00:00
|
|
|
|
|
|
|
flags = testcase.flags + context.mode_flags
|
|
|
|
env = self._get_env(source)
|
|
|
|
|
2017-12-12 12:29:36 +00:00
|
|
|
flags += self._parse_source_flags(testcase, source)
|
2012-09-24 09:38:46 +00:00
|
|
|
|
|
|
|
files_list = [] # List of file names to append to command arguments.
|
|
|
|
files_match = FILES_PATTERN.search(source);
|
|
|
|
# Accept several lines of 'Files:'.
|
|
|
|
while True:
|
|
|
|
if files_match:
|
|
|
|
files_list += files_match.group(1).strip().split()
|
|
|
|
files_match = FILES_PATTERN.search(source, files_match.end())
|
|
|
|
else:
|
|
|
|
break
|
|
|
|
files = [ os.path.normpath(os.path.join(self.root, '..', '..', f))
|
|
|
|
for f in files_list ]
|
|
|
|
testfilename = os.path.join(self.root, testcase.path + self.suffix())
|
|
|
|
if SELF_SCRIPT_PATTERN.search(source):
|
2017-11-16 14:42:28 +00:00
|
|
|
files = (
|
|
|
|
["-e", "TEST_FILE_NAME=\"%s\"" % testfilename.replace("\\", "\\\\")] +
|
|
|
|
files)
|
2015-01-20 10:17:21 +00:00
|
|
|
|
2017-12-11 20:25:41 +00:00
|
|
|
if not context.no_harness:
|
|
|
|
files += self._get_mjsunit_files(source)
|
2015-02-10 19:11:44 +00:00
|
|
|
|
|
|
|
if MODULE_PATTERN.search(source):
|
|
|
|
files.append("--module")
|
2012-09-24 09:38:46 +00:00
|
|
|
files.append(testfilename)
|
|
|
|
|
2017-11-16 14:42:28 +00:00
|
|
|
all_files = list(files)
|
2012-09-24 09:38:46 +00:00
|
|
|
if context.isolates:
|
2017-11-16 14:42:28 +00:00
|
|
|
all_files += ["--isolate"] + files
|
|
|
|
|
|
|
|
return all_files, flags, env
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2017-11-16 14:42:28 +00:00
|
|
|
def _get_env(self, source):
|
Reland of [date] Add ICU backend for timezone info behind a flag (patchset #1 id:1 of https://codereview.chromium.org/2811103002/ )
Reason for revert:
Reland with tests marked as off in no-i18n mode
Original issue's description:
> Revert of [date] Add ICU backend for timezone info behind a flag (patchset #17 id:320001 of https://codereview.chromium.org/2724373002/ )
>
> Reason for revert:
> Breaks noi18n:
> https://build.chromium.org/p/client.v8/builders/V8%20Linux%20-%20noi18n%20-%20debug/builds/13314
>
> Original issue's description:
> > [date] Add ICU backend for timezone info behind a flag
> >
> > This patch implements a timezone backend which is based on ICU, rather
> > than operating system calls. It can be turned on by passing the
> > --icu-timezone-data flag. The goal here is to take advantage of ICU's
> > data, which is more complete than the data that some system calls expose.
> > For example, without any special code, this patch fixes the time zone
> > of Lord Howe Island to have a correct 30 minute DST offset, rather than
> > 60 minutes as the OS backends assume it to have.
> >
> > Unfortunately, the parenthized timezone name in Date.prototype.toString()
> > differs across platforms. This patch chooses the long timezone name,
> > which matches Windows behavior and might be the most intelligible, but
> > the web compatibility impact is unclear.
> >
> > BUG=v8:6031,v8:2137,v8:6076
> >
> > Review-Url: https://codereview.chromium.org/2724373002
> > Cr-Commit-Position: refs/heads/master@{#44562}
> > Committed: https://chromium.googlesource.com/v8/v8/+/b213f2399038a615cdfbfa0201cddc113d304018
>
> TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,littledan@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6031,v8:2137,v8:6076
>
> Review-Url: https://codereview.chromium.org/2811103002
> Cr-Commit-Position: refs/heads/master@{#44565}
> Committed: https://chromium.googlesource.com/v8/v8/+/13ad50811024ace5623d5d4d13cea4ef21f4affd
TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,machenbach@chromium.org
BUG=v8:6031,v8:2137,v8:6076
Review-Url: https://codereview.chromium.org/2813863002
Cr-Commit-Position: refs/heads/master@{#44575}
2017-04-11 13:17:29 +00:00
|
|
|
env_match = ENV_PATTERN.search(source)
|
2017-11-16 14:42:28 +00:00
|
|
|
env = {}
|
Reland of [date] Add ICU backend for timezone info behind a flag (patchset #1 id:1 of https://codereview.chromium.org/2811103002/ )
Reason for revert:
Reland with tests marked as off in no-i18n mode
Original issue's description:
> Revert of [date] Add ICU backend for timezone info behind a flag (patchset #17 id:320001 of https://codereview.chromium.org/2724373002/ )
>
> Reason for revert:
> Breaks noi18n:
> https://build.chromium.org/p/client.v8/builders/V8%20Linux%20-%20noi18n%20-%20debug/builds/13314
>
> Original issue's description:
> > [date] Add ICU backend for timezone info behind a flag
> >
> > This patch implements a timezone backend which is based on ICU, rather
> > than operating system calls. It can be turned on by passing the
> > --icu-timezone-data flag. The goal here is to take advantage of ICU's
> > data, which is more complete than the data that some system calls expose.
> > For example, without any special code, this patch fixes the time zone
> > of Lord Howe Island to have a correct 30 minute DST offset, rather than
> > 60 minutes as the OS backends assume it to have.
> >
> > Unfortunately, the parenthized timezone name in Date.prototype.toString()
> > differs across platforms. This patch chooses the long timezone name,
> > which matches Windows behavior and might be the most intelligible, but
> > the web compatibility impact is unclear.
> >
> > BUG=v8:6031,v8:2137,v8:6076
> >
> > Review-Url: https://codereview.chromium.org/2724373002
> > Cr-Commit-Position: refs/heads/master@{#44562}
> > Committed: https://chromium.googlesource.com/v8/v8/+/b213f2399038a615cdfbfa0201cddc113d304018
>
> TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,littledan@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6031,v8:2137,v8:6076
>
> Review-Url: https://codereview.chromium.org/2811103002
> Cr-Commit-Position: refs/heads/master@{#44565}
> Committed: https://chromium.googlesource.com/v8/v8/+/13ad50811024ace5623d5d4d13cea4ef21f4affd
TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,machenbach@chromium.org
BUG=v8:6031,v8:2137,v8:6076
Review-Url: https://codereview.chromium.org/2813863002
Cr-Commit-Position: refs/heads/master@{#44575}
2017-04-11 13:17:29 +00:00
|
|
|
if env_match:
|
|
|
|
for env_pair in env_match.group(1).strip().split():
|
|
|
|
var, value = env_pair.split('=')
|
2017-11-16 14:42:28 +00:00
|
|
|
env[var] = value
|
|
|
|
return env
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2017-12-11 20:25:41 +00:00
|
|
|
def _get_mjsunit_files(self, source):
|
|
|
|
if NO_HARNESS_PATTERN.search(source):
|
|
|
|
return []
|
|
|
|
else:
|
|
|
|
return [os.path.join(self.root, 'mjsunit.js')]
|
|
|
|
|
2012-09-24 09:38:46 +00:00
|
|
|
def GetSourceForTest(self, testcase):
|
|
|
|
filename = os.path.join(self.root, testcase.path + self.suffix())
|
|
|
|
with open(filename) as f:
|
|
|
|
return f.read()
|
|
|
|
|
|
|
|
|
|
|
|
def GetSuite(name, root):
|
|
|
|
return MjsunitTestSuite(name, root)
|