1# 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
28import os
29import shutil
30
31from testrunner.local import commands
32from testrunner.local import testsuite
33from testrunner.local import utils
34from testrunner.objects import testcase
35
36
37class CcTestSuite(testsuite.TestSuite):
38
39  def __init__(self, name, root):
40    super(CcTestSuite, self).__init__(name, root)
41    if utils.IsWindows():
42      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)
58    if output.exit_code != 0:
59      print output.stdout
60      print output.stderr
61      return []
62    tests = []
63    for test_desc in output.stdout.strip().split():
64      if test_desc.find('<') < 0:
65        # Native Client output can contain a few non-test arguments
66        # before the tests. Skip these.
67        continue
68      raw_test, dependency = test_desc.split('<')
69      if dependency != '':
70        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
77
78  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"
87
88
89def GetSuite(name, root):
90  return CcTestSuite(name, root)
91