1*3ac0a46fSAndroid Build Coastguard Worker#!/usr/bin/env vpython3 2*3ac0a46fSAndroid Build Coastguard Worker# Copyright 2015 The PDFium Authors 3*3ac0a46fSAndroid Build Coastguard Worker# Use of this source code is governed by a BSD-style license that can be 4*3ac0a46fSAndroid Build Coastguard Worker# found in the LICENSE file. 5*3ac0a46fSAndroid Build Coastguard Worker 6*3ac0a46fSAndroid Build Coastguard Workerimport sys 7*3ac0a46fSAndroid Build Coastguard Worker 8*3ac0a46fSAndroid Build Coastguard Workerimport test_runner 9*3ac0a46fSAndroid Build Coastguard Worker 10*3ac0a46fSAndroid Build Coastguard Worker 11*3ac0a46fSAndroid Build Coastguard Workerdef main(): 12*3ac0a46fSAndroid Build Coastguard Worker runner = test_runner.TestRunner('javascript') 13*3ac0a46fSAndroid Build Coastguard Worker return runner.Run() 14*3ac0a46fSAndroid Build Coastguard Worker 15*3ac0a46fSAndroid Build Coastguard Worker 16*3ac0a46fSAndroid Build Coastguard Workerif __name__ == '__main__': 17*3ac0a46fSAndroid Build Coastguard Worker sys.exit(main()) 18