Comment 3 for bug 1706283

Revision history for this message
Stefan Bader (smb) wrote :

So the problem drilled down to the autotest script which was supposed to disable adding a certain compile option / sub-module to the breakpoints subtest. However, the naming in the Makefile changed in the newer kernel and so this problem happened (again).

From the test script:
# currently disable step_after_suspend_test as this breaks ssh'd
# login connections to the test VMs and real H/W

-cmd = 'sed -i "s/TEST_PROGS += step_after_suspend_test/# TEST_PROGS += step_after_suspend_test/" ' + fn
+cmd = 'sed -i "s/\(.* += step_after_suspend_test\)/#\\1/" ' + fn

Will update the script and re-enable the testing again.