run_pixel_tests.py revision 4d3acf4ec42bf6e838f9060103aff98fbf170794
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('pixel') 12 return runner.Run() 13 14if __name__ == '__main__': 15 sys.exit(main()) 16