blob: 2f468820dc0fefce9eae8da22028fd0860bc6c9b [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
Dan Sinclaira2d64302015-11-03 10:15:27 -05008import test_runner
Tom Sepezb7cb36a2015-02-13 16:54:48 -08009
10def main():
Dan Sinclaira2d64302015-11-03 10:15:27 -050011 runner = test_runner.TestRunner('javascript')
12 runner.Run()
Tom Sepezb7cb36a2015-02-13 16:54:48 -080013
14if __name__ == '__main__':
15 sys.exit(main())