Closed
Bug 1354026
Opened 8 years ago
Closed 8 years ago
Using gtest style's error message in cubeb
Categories
(Core :: Audio/Video: cubeb, enhancement, P2)
Core
Audio/Video: cubeb
Tracking
()
RESOLVED
FIXED
People
(Reporter: chunmin, Assigned: chunmin)
Details
Attachments
(1 file)
We have many patterns like the following:
if (r != CUBEB_OK) {
fprintf(stderr, "Error initializing cubeb stream\n");
ASSERT_EQ(r, CUBEB_OK);
}
We should replace them by:
ASSERT_EQ(r, CUBEB_OK) << "Error initializing cubeb stream";
Assignee | ||
Comment 1•8 years ago
|
||
Assignee: nobody → cchang
Updated•8 years ago
|
Rank: 25
Priority: -- → P2
Assignee | ||
Comment 2•8 years ago
|
||
Merged on github: https://github.com/kinetiknz/cubeb/pull/274
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•