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 6import sys 7 8# pylint: disable=relative-import 9import test_runner 10 11 12def main(): 13 runner = test_runner.TestRunner('corpus') 14 runner.SetEnforceExpectedImages(True) 15 runner.SetOneShotRenderer(True) 16 return runner.Run() 17 18 19if __name__ == '__main__': 20 sys.exit(main()) 21