xref: /aosp_15_r20/external/pdfium/testing/tools/run_pixel_tests.py (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
1#!/usr/bin/env vpython3
2# Copyright 2015 The PDFium Authors
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
10
11def main():
12  runner = test_runner.TestRunner('pixel')
13  runner.SetEnforceExpectedImages(True)
14  return runner.Run()
15
16
17if __name__ == '__main__':
18  sys.exit(main())
19