Move fdt_path_offset alias tests to right tests section
The test script includes several specific tests for the handling of aliases in fdt_path_offset(). These are primarily tests of the fdt_path_offset() libfdt function itself, although dtc is used to generate a test file for convenience. Move these from the dtc tests section to the libfdt tests section accordingly. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>main
parent
2d1417cd9e
commit
897a429199
|
@ -269,6 +269,11 @@ libfdt_tests () {
|
||||||
# Tests for behaviour on various sorts of corrupted trees
|
# Tests for behaviour on various sorts of corrupted trees
|
||||||
run_test truncated_property
|
run_test truncated_property
|
||||||
|
|
||||||
|
# Check aliases support in fdt_path_offset
|
||||||
|
run_dtc_test -I dts -O dtb -o aliases.dtb aliases.dts
|
||||||
|
run_test get_alias aliases.dtb
|
||||||
|
run_test path_offset_aliases aliases.dtb
|
||||||
|
|
||||||
# Specific bug tests
|
# Specific bug tests
|
||||||
run_test add_subnode_with_nops
|
run_test add_subnode_with_nops
|
||||||
run_dtc_test -I dts -O dts -o sourceoutput.test.dts sourceoutput.dts
|
run_dtc_test -I dts -O dts -o sourceoutput.test.dts sourceoutput.dts
|
||||||
|
@ -327,11 +332,6 @@ dtc_tests () {
|
||||||
run_dtc_test -I dts -O dtb -o dtc_comments-cmp.test.dtb comments-cmp.dts
|
run_dtc_test -I dts -O dtb -o dtc_comments-cmp.test.dtb comments-cmp.dts
|
||||||
run_test dtbs_equal_ordered dtc_comments.test.dtb dtc_comments-cmp.test.dtb
|
run_test dtbs_equal_ordered dtc_comments.test.dtb dtc_comments-cmp.test.dtb
|
||||||
|
|
||||||
# Check aliases support in fdt_path_offset
|
|
||||||
run_dtc_test -I dts -O dtb -o aliases.dtb aliases.dts
|
|
||||||
run_test get_alias aliases.dtb
|
|
||||||
run_test path_offset_aliases aliases.dtb
|
|
||||||
|
|
||||||
# Check /include/ directive
|
# Check /include/ directive
|
||||||
run_dtc_test -I dts -O dtb -o includes.test.dtb include0.dts
|
run_dtc_test -I dts -O dtb -o includes.test.dtb include0.dts
|
||||||
run_test dtbs_equal_ordered includes.test.dtb test_tree1.dtb
|
run_test dtbs_equal_ordered includes.test.dtb test_tree1.dtb
|
||||||
|
|
Loading…
Reference in New Issue