Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
igt-gpu-tools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
56
Issues
56
List
Boards
Labels
Service Desk
Milestones
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
drm
igt-gpu-tools
Commits
a0aa8f1a
Commit
a0aa8f1a
authored
Aug 29, 2013
by
Daniel Vetter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lib/drmtest: Print info when children died due to signals
Signed-off-by:
Daniel Vetter
<
daniel.vetter@ffwll.ch
>
parent
8f5d5416
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
lib/drmtest.c
lib/drmtest.c
+6
-1
No files found.
lib/drmtest.c
View file @
a0aa8f1a
...
...
@@ -1003,7 +1003,12 @@ void igt_waitchildren(void)
if
(
status
!=
0
)
{
if
(
WIFEXITED
(
status
))
igt_fail
(
WEXITSTATUS
(
status
));
else
else
if
(
WIFSIGNALED
(
status
))
{
printf
(
"child %i died with signal %i, %s
\n
"
,
nc
,
WTERMSIG
(
status
),
strsignal
(
WTERMSIG
(
status
)));
igt_fail
(
99
);
}
else
abort
();
}
}
...
...
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