mirror of
https://github.com/systemd/systemd.git
synced 2025-03-19 22:50:17 +03:00
libsystemd-dhcp: Add capability to print out test steps
This commit is contained in:
parent
8b7d0494a3
commit
ede286f9d4
@ -38,6 +38,7 @@ static struct ether_addr mac_addr = {
|
||||
.ether_addr_octet = {'A', 'B', 'C', '1', '2', '3'}
|
||||
};
|
||||
|
||||
static bool verbose = false;
|
||||
static int test_fd[2];
|
||||
|
||||
static void test_request_basic(sd_event *e)
|
||||
@ -46,6 +47,9 @@ static void test_request_basic(sd_event *e)
|
||||
|
||||
sd_dhcp_client *client;
|
||||
|
||||
if (verbose)
|
||||
printf("* %s\n", __FUNCTION__);
|
||||
|
||||
r = sd_dhcp_client_new(&client);
|
||||
|
||||
assert(r >= 0);
|
||||
@ -126,6 +130,9 @@ static void test_checksum(void)
|
||||
0xff, 0xff, 0xff, 0xff
|
||||
};
|
||||
|
||||
if (verbose)
|
||||
printf("* %s\n", __FUNCTION__);
|
||||
|
||||
assert(client_checksum(&buf, 20) == be16toh(0x78ae));
|
||||
}
|
||||
|
||||
@ -207,6 +214,9 @@ static void test_discover_message(sd_event *e)
|
||||
sd_dhcp_client *client;
|
||||
int res, r;
|
||||
|
||||
if (verbose)
|
||||
printf("* %s\n", __FUNCTION__);
|
||||
|
||||
r = sd_dhcp_client_new(&client);
|
||||
assert(r >= 0);
|
||||
assert(client);
|
||||
|
Loading…
x
Reference in New Issue
Block a user