96 lines
2.9 KiB
Bash
Executable File
96 lines
2.9 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright (C) 2016 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Include some functions from common.sh.
|
|
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
|
|
source ${SCRIPT_DIR}/common.sh
|
|
|
|
# Usage: run_test_case <filename> <description>
|
|
# Args:
|
|
# filename: The file name for ./gen_test.sh to generate and run the
|
|
# test case. Several files under ./testdata subfolder are required:
|
|
# - ./testdata/${filename}.base_dts
|
|
# - ./testdata/${filename}.add_dts
|
|
# - ./testdata/${filename}.add_ov_dts (optional)
|
|
# For more details, check ./gen_test.sh.
|
|
# description: a description message to be displayed in the terminal
|
|
run_test_case() {
|
|
local filename="$1"
|
|
local description="$2"
|
|
|
|
alert "${description}"
|
|
./gen_test.sh "${filename}" >&2 ||
|
|
die "Test case: ${filename} failed!!"
|
|
}
|
|
|
|
main() {
|
|
alert "========== Running Tests of libufdt =========="
|
|
|
|
if [ -z "${ANDROID_BUILD_TOP}" ]; then
|
|
die "Run envsetup.sh / lunch yet?"
|
|
fi
|
|
|
|
if ! command_exists dtc ||
|
|
! command_exists fdt_apply_overlay ||
|
|
! command_exists ufdt_apply_overlay; then
|
|
die "Run mmma $(dirname ${SCRIPT_DIR}) yet?"
|
|
fi
|
|
|
|
(
|
|
|
|
# cd to ${SCRIPT_DIR} in a subshell because gen_test.sh uses relative
|
|
# paths for dependent files.
|
|
cd "${SCRIPT_DIR}"
|
|
|
|
run_test_case \
|
|
"no_local_fixup" \
|
|
"Run test about fdt_apply_fragment with no local fixup"
|
|
run_test_case \
|
|
"apply_fragment" \
|
|
"Run test about fdt_apply_fragment with phandle update"
|
|
run_test_case \
|
|
"local_fixup" \
|
|
"Run test about fdt_overlay_do_local_fixups"
|
|
run_test_case \
|
|
"local_fixup_with_offset" \
|
|
"Run test about dealing with local fixup with offset > 0"
|
|
run_test_case \
|
|
"overlay_2_layers" \
|
|
"Run test about dealing with overlay deep tree"
|
|
# looks that libfdt doesn't promise the order, the order isn't matched.
|
|
run_test_case \
|
|
"node_ordering" \
|
|
"Run test about node ordering"
|
|
run_test_case \
|
|
"base_no_symbols" \
|
|
"Run test about base dtb without __symbols__"
|
|
run_test_case \
|
|
"overlay_no_symbols" \
|
|
"Run test about overlay dtb without __symbols__"
|
|
run_test_case \
|
|
"empty_overlay" \
|
|
"Run test about overlaying with empty base and overlay dt"
|
|
run_test_case \
|
|
"suffix_compress" \
|
|
"Run test about string suffix compression"
|
|
)
|
|
|
|
if [ $? -ne 0 ]; then
|
|
die "Some test cases failed, please check error message..."
|
|
fi
|
|
}
|
|
|
|
main "$@"
|