Skip to content

Commit c341f53

Browse files
tbursztykakartben
authored andcommitted
tests: misc: Fixing expected output on check_init_priorities test
check_init_priorities.py does no longer output any information about any initialization function pointer as such pointer has been removed from struct init_entry. Signed-off-by: Tomasz Bursztyka <tobu@bang-olufsen.dk>
1 parent 653f1bf commit c341f53

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/misc/check_init_priorities/validate_check_init_priorities_output.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010
REFERENCE_OUTPUT = [
1111
"ERROR: Device initialization priority validation failed, the sequence of initialization calls does not match the devicetree dependencies.",
12-
"ERROR: /i2c@11112222/test-i2c-dev@10 <NULL> is initialized before its dependency /gpio@ffff <NULL> (PRE_KERNEL_1+0 < PRE_KERNEL_1+1)",
13-
"ERROR: /i2c@11112222/test-i2c-dev@10 <NULL> is initialized before its dependency /i2c@11112222 <NULL> (PRE_KERNEL_1+0 < PRE_KERNEL_1+2)",
14-
"INFO: /i2c@11112222/test-i2c-dev@11 <NULL> PRE_KERNEL_1+3 > /gpio@ffff <NULL> PRE_KERNEL_1+1",
15-
"INFO: /i2c@11112222/test-i2c-dev@11 <NULL> PRE_KERNEL_1+3 > /i2c@11112222 <NULL> PRE_KERNEL_1+2",
12+
"ERROR: /i2c@11112222/test-i2c-dev@10 is initialized before its dependency /gpio@ffff (PRE_KERNEL_1+0 < PRE_KERNEL_1+1)",
13+
"ERROR: /i2c@11112222/test-i2c-dev@10 is initialized before its dependency /i2c@11112222 (PRE_KERNEL_1+0 < PRE_KERNEL_1+2)",
14+
"INFO: /i2c@11112222/test-i2c-dev@11 PRE_KERNEL_1+3 > /gpio@ffff PRE_KERNEL_1+1",
15+
"INFO: /i2c@11112222/test-i2c-dev@11 PRE_KERNEL_1+3 > /i2c@11112222 PRE_KERNEL_1+2",
1616
]
1717

1818
if len(sys.argv) != 2:

0 commit comments

Comments
 (0)