Sha256: 2b1359d0ea0023d75a5e39a9e2f7e0c04b000253e7b19a13ccf9881501828b2e

Contents?: true

Size: 1.34 KB

Versions: 16

Compression:

Stored size: 1.34 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',
]

# 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

16 entries across 16 versions & 3 rubygems

Version Path
libv8-3.11.8.17 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.16 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.13 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.12 vendor/v8/build/gyp/test/small/gyptest-small.py
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/libv8-3.11.8.4/vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.11 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.10 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.9 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.8 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.7 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.4 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-freebsd-3.11.8.3 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.3 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.1 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.11.8.0 vendor/v8/build/gyp/test/small/gyptest-small.py
libv8-3.10.8.0 vendor/v8/build/gyp/test/small/gyptest-small.py