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
d234bcdb
Commit
d234bcdb
authored
11 years ago
by
Nikolay Sivov
Committed by
Alexandre Julliard
11 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript/tests: Use a defined name for error code.
parent
37389cfc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
createobj.c
dlls/vbscript/tests/createobj.c
+2
-1
No files found.
dlls/vbscript/tests/createobj.c
View file @
d234bcdb
...
...
@@ -1000,7 +1000,7 @@ static void test_GetObject(void)
SET_EXPECT
(
SetSite
);
SET_EXPECT
(
reportSuccess
);
hres
=
parse_script_ae
(
parser
,
"Call GetObject(
\"
clsid:"
TESTOBJINST_CLSID
"
\"
).reportSuccess()"
);
if
(
hres
==
0x8007007e
)
{
/* Workaround for broken win2k */
if
(
hres
==
HRESULT_FROM_WIN32
(
ERROR_MOD_NOT_FOUND
)
)
{
/* Workaround for broken win2k */
win_skip
(
"got unexpected error %08x
\n
"
,
hres
);
CLEAR_CALLED
(
QI_IObjectWithSite
);
CLEAR_CALLED
(
SetSite
);
...
...
@@ -1008,6 +1008,7 @@ static void test_GetObject(void)
IActiveScriptParse_Release
(
parser
);
return
;
}
ok
(
hres
==
S_OK
,
"hres = %08x
\n
"
,
hres
);
CHECK_CALLED
(
QI_IObjectWithSite
);
CHECK_CALLED
(
SetSite
);
CHECK_CALLED
(
reportSuccess
);
...
...
This diff is collapsed.
Click to expand it.
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