Index: pylib/gyp/generator/ninja_test.py |
=================================================================== |
--- pylib/gyp/generator/ninja_test.py (revision 1508) |
+++ pylib/gyp/generator/ninja_test.py (working copy) |
@@ -24,6 +24,9 @@ |
endswith('.dll')) |
self.assertTrue(writer.ComputeOutputFileName(spec, 'static_library'). |
endswith('.lib')) |
+ self.assertTrue(writer.ComputeOutputFileName(spec, |
+ 'standalone_static_library'). |
+ endswith('.lib')) |
if sys.platform == 'linux2': |
def test_BinaryNamesLinux(self): |
@@ -39,6 +42,9 @@ |
endswith('.so')) |
self.assertTrue(writer.ComputeOutputFileName(spec, 'static_library'). |
endswith('.a')) |
+ self.assertTrue(writer.ComputeOutputFileName(spec, |
+ 'standalone_static_library'). |
+ endswith('.a')) |
if __name__ == '__main__': |
unittest.main() |