| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 AUTHOR = "ChromeOS Team" | 5 AUTHOR = "ChromeOS Team" |
| 6 NAME = "firmware_VbootCrypto" | 6 NAME = "firmware_VbootCrypto" |
| 7 PURPOSE = """ | 7 PURPOSE = """ |
| 8 Verifies Firmware Verified Boot Reference Implementation, its components, and | 8 Verifies Firmware Verified Boot Reference Implementation, its components, and |
| 9 crypto performance. | 9 crypto performance. |
| 10 """ | 10 """ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 test_suites = [ | 34 test_suites = [ |
| 35 'crypto', # RSA Signature Verification and SHA* Correctness. | 35 'crypto', # RSA Signature Verification and SHA* Correctness. |
| 36 'verification', # Firmware and Kernel Image Verification. | 36 'verification', # Firmware and Kernel Image Verification. |
| 37 'benchmarks', # Crypto and Image Verification benchmarks. | 37 'benchmarks', # Crypto and Image Verification benchmarks. |
| 38 'rollback', # Firmware/Kernel Rollback Prevention. | 38 'rollback', # Firmware/Kernel Rollback Prevention. |
| 39 'splicing', # Image Splicing Attack. | 39 'splicing', # Image Splicing Attack. |
| 40 ] | 40 ] |
| 41 for suite in test_suites: | 41 for suite in test_suites: |
| 42 job.run_test('firmware_VbootCrypto', suite=suite, tag=suite) | 42 job.run_test('firmware_VbootCrypto', suite=suite, tag=suite) |
| OLD | NEW |