blob: 36db837c6c7ce766cc43cdc44dd3f595223934c4 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001# Copyright 2008 the V8 project authors. All rights reserved.
2# Redistribution and use in source and binary forms, with or without
3# modification, are permitted provided that the following conditions are
4# met:
5#
6# * Redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer.
8# * Redistributions in binary form must reproduce the above
9# copyright notice, this list of conditions and the following
10# disclaimer in the documentation and/or other materials provided
11# with the distribution.
12# * Neither the name of Google Inc. nor the names of its
13# contributors may be used to endorse or promote products derived
14# from this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
Steve Blocka7e24c12009-10-30 11:49:00 +000028import os
Ben Murdochb8a8cc12014-11-26 15:28:44 +000029import shutil
30
31from testrunner.local import commands
32from testrunner.local import testsuite
33from testrunner.local import utils
34from testrunner.objects import testcase
Steve Blocka7e24c12009-10-30 11:49:00 +000035
Steve Blocka7e24c12009-10-30 11:49:00 +000036
Ben Murdochb8a8cc12014-11-26 15:28:44 +000037class CcTestSuite(testsuite.TestSuite):
Steve Blocka7e24c12009-10-30 11:49:00 +000038
Ben Murdochb8a8cc12014-11-26 15:28:44 +000039 def __init__(self, name, root):
40 super(CcTestSuite, self).__init__(name, root)
Steve Blocka7e24c12009-10-30 11:49:00 +000041 if utils.IsWindows():
Ben Murdochb8a8cc12014-11-26 15:28:44 +000042 build_dir = "build"
43 else:
44 build_dir = "out"
Ben Murdochb8a8cc12014-11-26 15:28:44 +000045
46 def ListTests(self, context):
47 shell = os.path.abspath(os.path.join(context.shell_dir, self.shell()))
48 if utils.IsWindows():
49 shell += ".exe"
50 output = commands.Execute(context.command_prefix +
51 [shell, "--list"] +
52 context.extra_flags)
Steve Blocka7e24c12009-10-30 11:49:00 +000053 if output.exit_code != 0:
54 print output.stdout
55 print output.stderr
56 return []
Ben Murdochb8a8cc12014-11-26 15:28:44 +000057 tests = []
Steve Blocka7e24c12009-10-30 11:49:00 +000058 for test_desc in output.stdout.strip().split():
Ben Murdochda12d292016-06-02 14:46:10 +010059 test = testcase.TestCase(self, test_desc)
Ben Murdochb8a8cc12014-11-26 15:28:44 +000060 tests.append(test)
Ben Murdochda12d292016-06-02 14:46:10 +010061 tests.sort(key=lambda t: t.path)
Ben Murdochb8a8cc12014-11-26 15:28:44 +000062 return tests
Steve Blocka7e24c12009-10-30 11:49:00 +000063
Ben Murdochb8a8cc12014-11-26 15:28:44 +000064 def GetFlagsForTestCase(self, testcase, context):
65 testname = testcase.path.split(os.path.sep)[-1]
Ben Murdochda12d292016-06-02 14:46:10 +010066 return (testcase.flags + [testcase.path] + context.mode_flags)
Ben Murdochb8a8cc12014-11-26 15:28:44 +000067
68 def shell(self):
69 return "cctest"
Steve Blocka7e24c12009-10-30 11:49:00 +000070
71
Ben Murdochb8a8cc12014-11-26 15:28:44 +000072def GetSuite(name, root):
73 return CcTestSuite(name, root)