Sha256: 27e8ea09a754e8890177f4df3608328d76ed6ca3ed4ee6f6990d68ea8f4ccde2

Contents?: true

Size: 1.37 KB

Versions: 23

Compression:

Stored size: 1.37 KB

Contents

#!/usr/bin/env python

# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""
Runs small tests.
"""

import imp
import os
import sys
import unittest

import TestGyp


test = TestGyp.TestGyp()

# Add pylib to the import path (so tests can import their dependencies).
# This is consistant with the path.append done in the top file "gyp".
sys.path.append(os.path.join(test._cwd, 'pylib'))

# Add new test suites here.
files_to_test = [
    'pylib/gyp/MSVSSettings_test.py',
    'pylib/gyp/easy_xml_test.py',
    'pylib/gyp/generator/msvs_test.py',
    'pylib/gyp/generator/ninja_test.py',
    'pylib/gyp/common_test.py',
]

# Collect all the suites from the above files.
suites = []
for filename in files_to_test:
  # Carve the module name out of the path.
  name = os.path.splitext(os.path.split(filename)[1])[0]
  # Find the complete module path.
  full_filename = os.path.join(test._cwd, filename)
  # Load the module.
  module = imp.load_source(name, full_filename)
  # Add it to the list of test suites.
  suites.append(unittest.defaultTestLoader.loadTestsFromModule(module))
# Create combined suite.
all_tests = unittest.TestSuite(suites)

# Run all the tests.
result = unittest.TextTestRunner(verbosity=2).run(all_tests)
if result.failures or result.errors:
  test.fail_test()

test.pass_test()

Version data entries

23 entries across 23 versions & 3 rubygems

Version Path
libv8-3.16.14.19.1 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.19 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.18 vendor/gyp/test/small/gyptest-small.py
arcabouco-0.2.13 vendor/bundle/gems/libv8-3.16.14.17/vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.17 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.16 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.15 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.14 vendor/gyp/test/small/gyptest-small.py
libv8-tmpfork-3.16.14.13 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.13 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.12 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.11 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.10 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.8 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.8.rc1 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.7 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.6 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.5 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.4 vendor/gyp/test/small/gyptest-small.py
libv8-3.16.14.3 vendor/gyp/test/small/gyptest-small.py