| 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 mojom | 5 import mojom |
| 6 import mojom_pack | 6 import mojom_pack |
| 7 import mojom_test | 7 import mojom_test |
| 8 import sys | 8 import sys |
| 9 | 9 |
| 10 EXPECT_EQ = mojom_test.EXPECT_EQ | 10 EXPECT_EQ = mojom_test.EXPECT_EQ |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 errors += RunTest(TestPaddingPackedOverflow) | 165 errors += RunTest(TestPaddingPackedOverflow) |
| 166 errors += RunTest(TestAllTypes) | 166 errors += RunTest(TestAllTypes) |
| 167 errors += RunTest(TestPaddingPackedOutOfOrderByOrdinal) | 167 errors += RunTest(TestPaddingPackedOutOfOrderByOrdinal) |
| 168 errors += RunTest(TestBools) | 168 errors += RunTest(TestBools) |
| 169 | 169 |
| 170 return errors | 170 return errors |
| 171 | 171 |
| 172 | 172 |
| 173 if __name__ == '__main__': | 173 if __name__ == '__main__': |
| 174 sys.exit(Main(sys.argv[1:])) | 174 sys.exit(Main(sys.argv[1:])) |
| OLD | NEW |