|
@@ -165,20 +165,20 @@ static void __init of_unittest_dynamic(void)
|
|
|
/* Add a new property - should pass*/
|
|
|
prop->name = "new-property";
|
|
|
prop->value = "new-property-data";
|
|
|
- prop->length = strlen(prop->value);
|
|
|
+ prop->length = strlen(prop->value) + 1;
|
|
|
unittest(of_add_property(np, prop) == 0, "Adding a new property failed\n");
|
|
|
|
|
|
/* Try to add an existing property - should fail */
|
|
|
prop++;
|
|
|
prop->name = "new-property";
|
|
|
prop->value = "new-property-data-should-fail";
|
|
|
- prop->length = strlen(prop->value);
|
|
|
+ prop->length = strlen(prop->value) + 1;
|
|
|
unittest(of_add_property(np, prop) != 0,
|
|
|
"Adding an existing property should have failed\n");
|
|
|
|
|
|
/* Try to modify an existing property - should pass */
|
|
|
prop->value = "modify-property-data-should-pass";
|
|
|
- prop->length = strlen(prop->value);
|
|
|
+ prop->length = strlen(prop->value) + 1;
|
|
|
unittest(of_update_property(np, prop) == 0,
|
|
|
"Updating an existing property should have passed\n");
|
|
|
|
|
@@ -186,7 +186,7 @@ static void __init of_unittest_dynamic(void)
|
|
|
prop++;
|
|
|
prop->name = "modify-property";
|
|
|
prop->value = "modify-missing-property-data-should-pass";
|
|
|
- prop->length = strlen(prop->value);
|
|
|
+ prop->length = strlen(prop->value) + 1;
|
|
|
unittest(of_update_property(np, prop) == 0,
|
|
|
"Updating a missing property should have passed\n");
|
|
|
|