Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
vkd3d
Manage
Activity
Members
Labels
Plan
Wiki
Bugzilla
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wine
vkd3d
Commits
b7c94b02
Commit
b7c94b02
authored
2 years ago
by
Elizabeth Figura
Committed by
Alexandre Julliard
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
tests: Check for failure from init_test_context() in the d3d11 runner.
parent
53d6966a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!13
tests: Various fixes.
Pipeline
#2239
skipped
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/shader_runner_d3d11.c
+5
-3
5 additions, 3 deletions
tests/shader_runner_d3d11.c
with
5 additions
and
3 deletions
tests/shader_runner_d3d11.c
+
5
−
3
View file @
b7c94b02
...
...
@@ -627,9 +627,11 @@ void run_shader_tests_d3d11(int argc, char **argv)
parse_args
(
argc
,
argv
);
enable_d3d11_debug_layer
(
argc
,
argv
);
init_adapter_info
();
init_test_context
(
&
runner
);
run_shader_tests
(
&
runner
.
r
,
argc
,
argv
,
&
d3d11_runner_ops
);
destroy_test_context
(
&
runner
);
if
(
init_test_context
(
&
runner
))
{
run_shader_tests
(
&
runner
.
r
,
argc
,
argv
,
&
d3d11_runner_ops
);
destroy_test_context
(
&
runner
);
}
}
FreeLibrary
(
d3d11_module
);
FreeLibrary
(
dxgi_module
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment