blob: 1d61966c2effb5aefaf9dcb345bd0d99ddcf8049 [file] [log] [blame]
Tom Sepezb7cb36a2015-02-13 16:54:48 -08001#!/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
Tom Sepezb7cb36a2015-02-13 16:54:48 -08006import sys
dsinclairfb0e3d72016-04-20 07:05:28 -07007
dsinclair2a8a20c2016-04-25 09:46:17 -07008import test_runner
Lei Zhang77aaf962015-09-09 13:05:42 -07009
Tom Sepezb7cb36a2015-02-13 16:54:48 -080010def main():
dsinclair2a8a20c2016-04-25 09:46:17 -070011 runner = test_runner.TestRunner('pixel')
Henrique Nakashima3bcabf32017-06-27 09:48:24 -040012 runner.SetEnforceExpectedImages(True)
dsinclair2a8a20c2016-04-25 09:46:17 -070013 return runner.Run()
Lei Zhang77aaf962015-09-09 13:05:42 -070014
Tom Sepezb7cb36a2015-02-13 16:54:48 -080015if __name__ == '__main__':
16 sys.exit(main())