Add checks for blacklisted directories to test_image_content.

Also, blacklist /usr/share/locale. Most recently this unused directory crept
back into the image after some "sudo" package changes/upgrades.

BUG=chromium-os:11820
TEST=build_image dev for x86-alex, tegra2, amd64-generic

Change-Id: I0a209a5030a3da3674d3a38faf2367032c6e3423
Reviewed-on: https://gerrit.chromium.org/gerrit/16352
Tested-by: Darin Petkov <petkov@chromium.org>
Reviewed-by: Chris Sosa <sosa@chromium.org>
Commit-Ready: Darin Petkov <petkov@chromium.org>
This commit is contained in:
Darin Petkov 2012-02-22 10:22:52 +01:00 committed by Gerrit
parent 195494efc0
commit a973d2bdb4

View File

@ -1,4 +1,4 @@
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved. # Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
@ -31,5 +31,15 @@ test_image_content() {
returncode=1 returncode=1
fi fi
local blacklist_dirs=(
"$root/usr/share/locale"
)
for dir in "${blacklist_dirs[@]}"; do
if [ -d "$dir" ]; then
error "test_image_content: Blacklisted directory found: $dir"
returncode=1
fi
done
return $returncode return $returncode
} }