| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2015 The LUCI Authors. All rights reserved. | 2 # Copyright 2015 The LUCI Authors. All rights reserved. |
| 3 # Use of this source code is governed by the Apache v2.0 license that can be | 3 # Use of this source code is governed under the Apache License, Version 2.0 |
| 4 # found in the LICENSE file. | 4 # that can be found in the LICENSE file. |
| 5 | 5 |
| 6 import logging | 6 import logging |
| 7 import sys | 7 import sys |
| 8 import unittest | 8 import unittest |
| 9 | 9 |
| 10 import test_env_platforms | 10 import test_env_platforms |
| 11 test_env_platforms.setup_test_env() | 11 test_env_platforms.setup_test_env() |
| 12 | 12 |
| 13 import win | 13 import win |
| 14 | 14 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 36 actual = win.to_cygwin_path(inputs) | 36 actual = win.to_cygwin_path(inputs) |
| 37 self.assertEqual(expected, actual, (inputs, expected, actual, i)) | 37 self.assertEqual(expected, actual, (inputs, expected, actual, i)) |
| 38 | 38 |
| 39 | 39 |
| 40 if __name__ == '__main__': | 40 if __name__ == '__main__': |
| 41 if '-v' in sys.argv: | 41 if '-v' in sys.argv: |
| 42 unittest.TestCase.maxDiff = None | 42 unittest.TestCase.maxDiff = None |
| 43 logging.basicConfig( | 43 logging.basicConfig( |
| 44 level=logging.DEBUG if '-v' in sys.argv else logging.CRITICAL) | 44 level=logging.DEBUG if '-v' in sys.argv else logging.CRITICAL) |
| 45 unittest.main() | 45 unittest.main() |
| OLD | NEW |