Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
run_javascript_tests.py
Go to the documentation of this file.
1#!/usr/bin/env vpython3
2# Copyright 2015 The PDFium Authors
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6import sys
7
8import test_runner
9
10
11def main():
12 runner = test_runner.TestRunner('javascript')
13 return runner.Run()
14
15
16if __name__ == '__main__':
17 sys.exit(main())