support/testing: revert the last change of check_network()

check_network() must check the error code of the command
used to check the network configuration with the value
passed as argument "exitCode".

But this argument is ignored since this commit [1].

Revert the last change of check_network().

Fixes:
https://gitlab.com/kubu93/buildroot/-/jobs/1522848308
https://gitlab.com/kubu93/buildroot/-/jobs/1522848306

[1] afc1ed4d51

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Romain Naour 2021-08-24 19:11:44 +02:00 committed by Thomas Petazzoni
parent fe4e06d317
commit f4ff135e78

View File

@ -42,4 +42,5 @@ class InitSystemBase(infra.basetest.BRTest):
def check_network(self, interface, exitCode=0):
cmd = "ip addr show {} |grep inet".format(interface)
self.assertRunOk(cmd)
_, exit_code = self.emulator.run(cmd)
self.assertEqual(exit_code, exitCode)