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
Merge requests
!133
tests: Make test context information nestable.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
tests: Make test context information nestable.
zfigura/vkd3d:pr4
into
master
Overview
2
Commits
2
Pipelines
2
Changes
5
Merged
Elizabeth Figura
requested to merge
zfigura/vkd3d:pr4
into
master
1 year ago
Overview
2
Commits
2
Pipelines
2
Changes
1
Expand
Merge request reports
Compare
version 1
version 4
5dbf64ab
1 year ago
version 3
2d79043a
1 year ago
version 2
990e16f1
1 year ago
version 1
ac9cede4
1 year ago
master (base)
and
version 2
latest version
dfa4bfdd
2 commits,
1 year ago
version 4
5dbf64ab
2 commits,
1 year ago
version 3
2d79043a
2 commits,
1 year ago
version 2
990e16f1
2 commits,
1 year ago
version 1
ac9cede4
2 commits,
1 year ago
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
include/private/vkd3d_test.h
+
2
−
2
Options
@@ -135,11 +135,11 @@ broken(bool condition)
return
condition
&&
vkd3d_test_platform_is_windows
();
}
static
void
vkd3d_test_printf
(
int
line
,
const
char
*
msg
)
static
void
vkd3d_test_printf
(
unsigned
int
line
,
const
char
*
msg
)
{
unsigned
int
i
;
printf
(
"%s:%
d
: "
,
vkd3d_test_name
,
line
);
printf
(
"%s:%
u
: "
,
vkd3d_test_name
,
line
);
for
(
i
=
0
;
i
<
vkd3d_test_state
.
context_count
;
++
i
)
printf
(
"%s: "
,
vkd3d_test_state
.
context
[
i
]);
printf
(
"%s"
,
msg
);
Loading