Skip to content

Commit 09898b5

Browse files
committed
ci: Add Robot Framework test for kernel configuration availability
This ensures that the kernel is built with configuration access enabled for debugging and verification purposes. Maintenance-type: ci
1 parent 087fc46 commit 09898b5

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
*** Settings ***
2+
Test Timeout 60 seconds
3+
4+
Library OperatingSystem
5+
Library ../libs/TestUtils.py
6+
7+
Resource variables.robot
8+
9+
*** Test Cases ***
10+
Check Kernel Configuration available in /proc/config.gz
11+
${TEST_BOARD_IP} Get Environment Variable TEST_BOARD_IP
12+
${stdout}= SSH Command ${TEST_BOARD_IP} zcat /proc/config.gz |grep "Kernel Configuration"
13+
Log ${stdout}
14+
Should Contain ${stdout}[0] Kernel Configuration
15+

0 commit comments

Comments
 (0)