| 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_data | 5 import mojom_data |
| 6 import mojom_test | 6 import mojom_test |
| 7 import sys | 7 import sys |
| 8 | 8 |
| 9 EXPECT_EQ = mojom_test.EXPECT_EQ | 9 EXPECT_EQ = mojom_test.EXPECT_EQ |
| 10 EXPECT_TRUE = mojom_test.EXPECT_TRUE | 10 EXPECT_TRUE = mojom_test.EXPECT_TRUE |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 errors = 0 | 76 errors = 0 |
| 77 errors += RunTest(TestWriteRead) | 77 errors += RunTest(TestWriteRead) |
| 78 errors += RunTest(TestRead) | 78 errors += RunTest(TestRead) |
| 79 errors += RunTest(TestWrite) | 79 errors += RunTest(TestWrite) |
| 80 | 80 |
| 81 return errors | 81 return errors |
| 82 | 82 |
| 83 | 83 |
| 84 if __name__ == '__main__': | 84 if __name__ == '__main__': |
| 85 sys.exit(Main(sys.argv[1:])) | 85 sys.exit(Main(sys.argv[1:])) |
| OLD | NEW |