Tom Sepez | b7cb36a | 2015-02-13 16:54:48 -0800 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # Copyright 2015 The PDFium Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
Tom Sepez | b7cb36a | 2015-02-13 16:54:48 -0800 | [diff] [blame] | 6 | import sys |
| 7 | |
dsinclair | 2a8a20c | 2016-04-25 09:46:17 -0700 | [diff] [blame^] | 8 | import test_runner |
Tom Sepez | b7cb36a | 2015-02-13 16:54:48 -0800 | [diff] [blame] | 9 | |
| 10 | def main(): |
dsinclair | 2a8a20c | 2016-04-25 09:46:17 -0700 | [diff] [blame^] | 11 | runner = test_runner.TestRunner('javascript') |
| 12 | return runner.Run() |
Tom Sepez | b7cb36a | 2015-02-13 16:54:48 -0800 | [diff] [blame] | 13 | |
| 14 | if __name__ == '__main__': |
| 15 | sys.exit(main()) |