OLD | NEW |
1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2011 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 TIME="SHORT" | 5 TIME="SHORT" |
6 AUTHOR = "The Chromium OS Authors" | 6 AUTHOR = "The Chromium OS Authors" |
7 DOC = """ | 7 DOC = """ |
8 Ensures appropriate permissions on data within the chronos profile. | 8 Ensures appropriate permissions on data within the chronos profile. |
9 """ | 9 """ |
10 NAME = "security_ProfilePermissions" | 10 NAME = "security_ProfilePermissions" |
11 PURPOSE = "Protect the security boundary enforced by filesystem permissions" | 11 PURPOSE = "Protect the security boundary enforced by filesystem permissions" |
12 CRITERIA = """ | 12 CRITERIA = """ |
13 Fail if there are any files or directories writable by group/other in ~. | 13 Fail if there are any files or directories writable by group/other in ~. |
14 """ | 14 """ |
15 TEST_CLASS = "security" | 15 TEST_CLASS = "security" |
16 TEST_CATEGORY = "Functional" | 16 TEST_CATEGORY = "Functional" |
17 TEST_TYPE = "client" | 17 TEST_TYPE = "client" |
18 | 18 |
19 job.run_test("security_ProfilePermissions", creds='$default', tag='login') | 19 job.run_test("security_ProfilePermissions", creds='$default', tag='login') |
20 #TODO(jimhebert) Uncomment this after chromium-os:13173 is fixed. | 20 job.run_test("security_ProfilePermissions", creds=None, tag='BWSI') |
21 #job.run_test("security_ProfilePermissions", creds=None, tag='BWSI') | |
22 | |
OLD | NEW |