Skip to content

Commit aede01d

Browse files
committed
Add another test case.
1 parent 0d7e296 commit aede01d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/deviceid.c

+4
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,10 @@ int main (int argc, char *argv[])
135135
assert (strcmp(comment_out, "Comment") == 0);
136136
assert (strcmp(device, "UNKNOWN vendor/model") == 0);
137137

138+
deviceid_decode_mice ("", comment_out, sizeof(comment_out), device, sizeof(device));
139+
dw_printf ("%s %s\n", comment_out, device);
140+
assert (strcmp(comment_out, "") == 0);
141+
assert (strcmp(device, "UNKNOWN vendor/model") == 0);
138142

139143
// Tocall
140144

0 commit comments

Comments
 (0)