Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
219857f8
Commit
219857f8
authored
Jun 28, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Jun 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add tests that show '!=' is not a valid conditional expression operator.
parent
ff01912a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
package.c
dlls/msi/tests/package.c
+23
-0
No files found.
dlls/msi/tests/package.c
View file @
219857f8
...
@@ -1329,6 +1329,29 @@ static void test_condition(void)
...
@@ -1329,6 +1329,29 @@ static void test_condition(void)
r
=
MsiEvaluateCondition
(
hpkg
,
"one <
\"
1
\"
"
);
r
=
MsiEvaluateCondition
(
hpkg
,
"one <
\"
1
\"
"
);
ok
(
r
==
MSICONDITION_FALSE
,
"wrong return val
\n
"
);
ok
(
r
==
MSICONDITION_FALSE
,
"wrong return val
\n
"
);
MsiSetProperty
(
hpkg
,
"X"
,
"5.0"
);
r
=
MsiEvaluateCondition
(
hpkg
,
"X !=
\"\"
"
);
ok
(
r
==
MSICONDITION_ERROR
,
"wrong return val (%d)
\n
"
,
r
);
r
=
MsiEvaluateCondition
(
hpkg
,
"X =
\"
5.0
\"
"
);
ok
(
r
==
MSICONDITION_TRUE
,
"wrong return val (%d)
\n
"
,
r
);
r
=
MsiEvaluateCondition
(
hpkg
,
"X =
\"
5.1
\"
"
);
ok
(
r
==
MSICONDITION_FALSE
,
"wrong return val (%d)
\n
"
,
r
);
r
=
MsiEvaluateCondition
(
hpkg
,
"X =
\"
6.0
\"
"
);
ok
(
r
==
MSICONDITION_FALSE
,
"wrong return val (%d)
\n
"
,
r
);
r
=
MsiEvaluateCondition
(
hpkg
,
"X =
\"
5.0
\"
or X =
\"
5.1
\"
or X =
\"
6.0
\"
"
);
ok
(
r
==
MSICONDITION_TRUE
,
"wrong return val (%d)
\n
"
,
r
);
r
=
MsiEvaluateCondition
(
hpkg
,
"(X =
\"
5.0
\"
or X =
\"
5.1
\"
or X =
\"
6.0
\"
)"
);
ok
(
r
==
MSICONDITION_TRUE
,
"wrong return val (%d)
\n
"
,
r
);
r
=
MsiEvaluateCondition
(
hpkg
,
"X !=
\"\"
and (X =
\"
5.0
\"
or X =
\"
5.1
\"
or X =
\"
6.0
\"
)"
);
ok
(
r
==
MSICONDITION_ERROR
,
"wrong return val (%d)
\n
"
,
r
);
MsiCloseHandle
(
hpkg
);
MsiCloseHandle
(
hpkg
);
DeleteFile
(
msifile
);
DeleteFile
(
msifile
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment