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