msi/tests: Actually test two return values.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0fd3b1eab9
commit
8738075da4
|
@ -2081,9 +2081,9 @@ static void test_condition(void)
|
|||
ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
|
||||
r = MsiEvaluateConditionA(hpkg, "!nofeature=\"\"");
|
||||
ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
|
||||
MsiEvaluateConditionA(hpkg, "$nocomponent=\"\"");
|
||||
r = MsiEvaluateConditionA(hpkg, "$nocomponent=\"\"");
|
||||
ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
|
||||
MsiEvaluateConditionA(hpkg, "?nocomponent=\"\"");
|
||||
r = MsiEvaluateConditionA(hpkg, "?nocomponent=\"\"");
|
||||
ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
|
||||
|
||||
MsiSetPropertyA(hpkg, "A", "2");
|
||||
|
|
Loading…
Reference in New Issue