Commit baa60994 by Geoff Lang Committed by Commit Bot

DEQP: Print not supported messages from tests.

BUG=angleproject:2546 Change-Id: I74b376c07f94d77abe28129ff5e97bd19a26d0d0 Reviewed-on: https://chromium-review.googlesource.com/1057831Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Geoff Lang <geofflang@chromium.org>
parent bb7707f3
......@@ -224,7 +224,9 @@ ANGLE_LIBTESTER_EXPORT bool deqp_libtester_run(const char *caseName)
switch (result.getCode())
{
case QP_TEST_RESULT_PASS:
return true;
case QP_TEST_RESULT_NOT_SUPPORTED:
std::cout << "Not supported! " << result.getDescription() << std::endl;
return true;
case QP_TEST_RESULT_QUALITY_WARNING:
std::cout << "Quality warning! " << result.getDescription() << std::endl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment