You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1018 B
37 lines
1018 B
#!/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.
|
|
|
|
""" Unit tests for the msvs.py file. """
|
|
|
|
import gyp.generator.msvs as msvs
|
|
import unittest
|
|
import StringIO
|
|
|
|
|
|
class TestSequenceFunctions(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.stderr = StringIO.StringIO()
|
|
|
|
def test_GetLibraries(self):
|
|
self.assertEqual(
|
|
msvs._GetLibraries({}),
|
|
[])
|
|
self.assertEqual(
|
|
msvs._GetLibraries({'libraries': []}),
|
|
[])
|
|
self.assertEqual(
|
|
msvs._GetLibraries({'other':'foo', 'libraries': ['a.lib']}),
|
|
['a.lib'])
|
|
self.assertEqual(
|
|
msvs._GetLibraries({'libraries': ['-la']}),
|
|
['a.lib'])
|
|
self.assertEqual(
|
|
msvs._GetLibraries({'libraries': ['a.lib', 'b.lib', 'c.lib', '-lb.lib',
|
|
'-lb.lib', 'd.lib', 'a.lib']}),
|
|
['c.lib', 'b.lib', 'd.lib', 'a.lib'])
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|