| # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| AUTHOR = "ChromeOS Team" |
| NAME = "platform_CrosDisksFilesystem" |
| PURPOSE = "Verify that cros-disks can mount supported filesystems correctly" |
| |
| CRITERIA = """ |
| """ |
| ATTRIBUTES = "suite:bvt-perbuild" |
| TIME = "SHORT" |
| TEST_CATEGORY = "Functional" |
| TEST_CLASS = "platform" |
| TEST_TYPE = "client" |
| |
| DOC = """ |
| Calls cros-disks to mount supported filesystems |
| """ |
| |
| job.run_test('platform_CrosDisksFilesystem', timeout_s=10, |
| config_file='exfat_tests', tag='exfat') |
| job.run_test('platform_CrosDisksFilesystem', timeout_s=10, |
| config_file='ext2_tests', tag='ext2') |
| job.run_test('platform_CrosDisksFilesystem', timeout_s=10, |
| config_file='ext3_tests', tag='ext3') |
| job.run_test('platform_CrosDisksFilesystem', timeout_s=10, |
| config_file='ext4_tests', tag='ext4') |
| job.run_test('platform_CrosDisksFilesystem', timeout_s=10, |
| config_file='ntfs_tests', tag='ntfs') |
| job.run_test('platform_CrosDisksFilesystem', timeout_s=10, |
| config_file='vfat_tests', tag='vfat') |