blob: f48a57d5a4f67b2d0831fc6441afc46f74611606 [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
dsinclair84b26ec2016-04-20 05:54:14 -07007import test_runner
Lei Zhang77aaf962015-09-09 13:05:42 -07008
Tom Sepezb7cb36a2015-02-13 16:54:48 -08009def main():
dsinclair84b26ec2016-04-20 05:54:14 -070010 runner = test_runner.TestRunner('pixel')
11 return runner.Run()
Lei Zhang77aaf962015-09-09 13:05:42 -070012
Tom Sepezb7cb36a2015-02-13 16:54:48 -080013if __name__ == '__main__':
14 sys.exit(main())