1# Copyright (c) 2012 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 5AUTHOR = 'The Chromium OS Authors' 6NAME = 'hardware_DiskSize.hwqual' 7PURPOSE = 'Ensure the hard disk is large enough.' 8CRITERIA = 'Fails if the main disk is less than gb_main_disk_size.' 9ATTRIBUTES = "suite:hwqual" 10SUITE = "hwqual" 11TIME='SHORT' 12TEST_CATEGORY = 'Functional' 13TEST_CLASS = "hardware" 14TEST_TYPE = 'client' 15 16DOC = """ 17This test will find the disk where /dev is located by searching /proc/cmdline, 18and will then determine the size of the main disk by reading /proc/partitions. 19""" 20 21job.run_test('hardware_DiskSize', constraints=['gb_main_disk_size >= 8']) 22