| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import sys | 5 import sys |
| 6 | 6 |
| 7 import module as mojom | 7 import module as mojom |
| 8 import pack | 8 import pack |
| 9 import test_support | 9 import test_support |
| 10 | 10 |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 errors += RunTest(TestNullableTypes) | 184 errors += RunTest(TestNullableTypes) |
| 185 errors += RunTest(TestAllTypes) | 185 errors += RunTest(TestAllTypes) |
| 186 errors += RunTest(TestPaddingPackedOutOfOrderByOrdinal) | 186 errors += RunTest(TestPaddingPackedOutOfOrderByOrdinal) |
| 187 errors += RunTest(TestBools) | 187 errors += RunTest(TestBools) |
| 188 | 188 |
| 189 return errors | 189 return errors |
| 190 | 190 |
| 191 | 191 |
| 192 if __name__ == '__main__': | 192 if __name__ == '__main__': |
| 193 sys.exit(Main(sys.argv[1:])) | 193 sys.exit(Main(sys.argv[1:])) |
| OLD | NEW |