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
8ecc0d41
Commit
8ecc0d41
authored
Oct 13, 2017
by
Hugh McMaster
Committed by
Alexandre Julliard
Oct 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regedit/tests: Add REG_NONE to the empty hex data import tests.
Signed-off-by:
Hugh McMaster
<
hugh.mcmaster@outlook.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a5de10a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
regedit.c
programs/regedit/tests/regedit.c
+6
-2
No files found.
programs/regedit/tests/regedit.c
View file @
8ecc0d41
...
...
@@ -659,7 +659,8 @@ static void test_basic_import(void)
"
\"
Wine22e
\"
=hex(7):
\n
"
"
\"
Wine22f
\"
=hex(100):
\n
"
"
\"
Wine22g
\"
=hex(abcd):
\n
"
"
\"
Wine22h
\"
=hex:
\n\n
"
);
"
\"
Wine22h
\"
=hex:
\n
"
"
\"
Wine22i
\"
=hex(0):
\n\n
"
);
verify_reg
(
hkey
,
"Wine22a"
,
REG_SZ
,
NULL
,
0
,
0
);
verify_reg
(
hkey
,
"Wine22b"
,
REG_EXPAND_SZ
,
NULL
,
0
,
TODO_REG_SIZE
);
verify_reg
(
hkey
,
"Wine22c"
,
REG_BINARY
,
NULL
,
0
,
0
);
...
...
@@ -668,6 +669,7 @@ static void test_basic_import(void)
verify_reg
(
hkey
,
"Wine22f"
,
0x100
,
NULL
,
0
,
0
);
verify_reg
(
hkey
,
"Wine22g"
,
0xabcd
,
NULL
,
0
,
0
);
verify_reg
(
hkey
,
"Wine22h"
,
REG_BINARY
,
NULL
,
0
,
0
);
verify_reg
(
hkey
,
"Wine22i"
,
REG_NONE
,
NULL
,
0
,
0
);
RegCloseKey
(
hkey
);
...
...
@@ -1072,7 +1074,8 @@ static void test_basic_import_unicode(void)
"
\"
Wine22e
\"
=hex(7):
\n
"
"
\"
Wine22f
\"
=hex(100):
\n
"
"
\"
Wine22g
\"
=hex(abcd):
\n
"
"
\"
Wine22h
\"
=hex:
\n\n
"
);
"
\"
Wine22h
\"
=hex:
\n
"
"
\"
Wine22i
\"
=hex(0):
\n\n
"
);
verify_reg
(
hkey
,
"Wine22a"
,
REG_SZ
,
NULL
,
0
,
0
);
verify_reg
(
hkey
,
"Wine22b"
,
REG_EXPAND_SZ
,
NULL
,
0
,
TODO_REG_SIZE
);
verify_reg
(
hkey
,
"Wine22c"
,
REG_BINARY
,
NULL
,
0
,
0
);
...
...
@@ -1081,6 +1084,7 @@ static void test_basic_import_unicode(void)
verify_reg
(
hkey
,
"Wine22f"
,
0x100
,
NULL
,
0
,
0
);
verify_reg
(
hkey
,
"Wine22g"
,
0xabcd
,
NULL
,
0
,
0
);
verify_reg
(
hkey
,
"Wine22h"
,
REG_BINARY
,
NULL
,
0
,
0
);
verify_reg
(
hkey
,
"Wine22i"
,
REG_NONE
,
NULL
,
0
,
0
);
RegCloseKey
(
hkey
);
...
...
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