blob: 76d2379dbbbeafaac4b9026f1f00bdefd4fb9077 [file] [log] [blame]
Tom Sepezb7cb36a2015-02-13 16:54:48 -08001#!/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 Sepezb7cb36a2015-02-13 16:54:48 -08006import sys
7
dsinclair2a8a20c2016-04-25 09:46:17 -07008import test_runner
Tom Sepezb7cb36a2015-02-13 16:54:48 -08009
10def main():
dsinclair2a8a20c2016-04-25 09:46:17 -070011 runner = test_runner.TestRunner('javascript')
12 return runner.Run()
Tom Sepezb7cb36a2015-02-13 16:54:48 -080013
14if __name__ == '__main__':
15 sys.exit(main())