• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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  runner.SetEnforceExpectedImages(True)
13  return runner.Run()
14
15if __name__ == '__main__':
16  sys.exit(main())
17