blob: bd93450a97e87e3b184174932fb56cd832dbdfd4 [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"
45 self.serdes_dir = os.path.normpath(
46 os.path.join(root, "..", "..", build_dir, ".serdes"))
47 if os.path.exists(self.serdes_dir):
48 shutil.rmtree(self.serdes_dir, True)
49 os.makedirs(self.serdes_dir)
50
51 def ListTests(self, context):
52 shell = os.path.abspath(os.path.join(context.shell_dir, self.shell()))
53 if utils.IsWindows():
54 shell += ".exe"
55 output = commands.Execute(context.command_prefix +
56 [shell, "--list"] +
57 context.extra_flags)
Steve Blocka7e24c12009-10-30 11:49:00 +000058 if output.exit_code != 0:
59 print output.stdout
60 print output.stderr
61 return []
Ben Murdochb8a8cc12014-11-26 15:28:44 +000062 tests = []
Steve Blocka7e24c12009-10-30 11:49:00 +000063 for test_desc in output.stdout.strip().split():
Ben Murdochb8a8cc12014-11-26 15:28:44 +000064 if test_desc.find('<') < 0:
65 # Native Client output can contain a few non-test arguments
66 # before the tests. Skip these.
67 continue
Steve Blocka7e24c12009-10-30 11:49:00 +000068 raw_test, dependency = test_desc.split('<')
Steve Blocka7e24c12009-10-30 11:49:00 +000069 if dependency != '':
Ben Murdochb8a8cc12014-11-26 15:28:44 +000070 dependency = raw_test.split('/')[0] + '/' + dependency
71 else:
72 dependency = None
73 test = testcase.TestCase(self, raw_test, dependency=dependency)
74 tests.append(test)
75 tests.sort()
76 return tests
Steve Blocka7e24c12009-10-30 11:49:00 +000077
Ben Murdochb8a8cc12014-11-26 15:28:44 +000078 def GetFlagsForTestCase(self, testcase, context):
79 testname = testcase.path.split(os.path.sep)[-1]
80 serialization_file = os.path.join(self.serdes_dir, "serdes_" + testname)
81 serialization_file += ''.join(testcase.flags).replace('-', '_')
82 return (testcase.flags + [testcase.path] + context.mode_flags +
83 ["--testing_serialization_file=" + serialization_file])
84
85 def shell(self):
86 return "cctest"
Steve Blocka7e24c12009-10-30 11:49:00 +000087
88
Ben Murdochb8a8cc12014-11-26 15:28:44 +000089def GetSuite(name, root):
90 return CcTestSuite(name, root)