1# Copyright (c) 2018 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5NAME = 'hardware_UnsafeMemory.quick' 6AUTHOR = 'puthik' 7PURPOSE = 'Make sure that hardware_UnsafeMemory working properly.' 8CRITERIA = 'Fails if memory is unsafe' 9TIME = 'SHORT' 10TEST_CATEGORY = 'security' 11TEST_CLASS = 'hardware' 12TEST_TYPE = 'client' 13JOB_RETRIES = 0 14 15DOC = """ 16This test uses rowhammer-test to find memory faults that may lead to violations 17of runtime expectations. 18 19The quick version run for 30 seconds to make sure that the test is working. 20""" 21 22# Run the test for 30 seconds. 23job.run_test('hardware_UnsafeMemory', sec=30, tag=NAME.split('.')[1]) 24