mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
validate: Print the return value at the end
Making it easier to know whether the test passed or not.
This commit is contained in:
parent
f708156ff6
commit
3607fd8deb
2 changed files with 4 additions and 0 deletions
|
@ -898,5 +898,7 @@ exit:
|
||||||
g_source_remove (signal_watch_id);
|
g_source_remove (signal_watch_id);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
g_print ("\n=======> Test %s (Return value: %i)\n\n",
|
||||||
|
ret == 0 ? "PASSED" : "FAILED", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
|
@ -480,5 +480,7 @@ exit:
|
||||||
g_source_remove (signal_watch_id);
|
g_source_remove (signal_watch_id);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
g_print ("\n=======> Test %s (Return value: %i)\n\n",
|
||||||
|
ret == 0 ? "PASSED" : "FAILED", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue