From: Jonathan Gray Date: Sat, 30 Aug 2014 17:43:18 +0000 (+1000) Subject: st/xvmc/tests: avoid non portable error.h functions X-Git-Tag: android-x86-4.4-r3~3161 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=d3dee3df97e05f86792a1591a023f66ca195fb1c;p=android-x86%2Fexternal-mesa.git st/xvmc/tests: avoid non portable error.h functions To improve compatibility with OpenBSD. Signed-off-by: Jonathan Gray Reviewed-by: Ilia Mirkin --- diff --git a/src/gallium/state_trackers/xvmc/tests/test_blocks.c b/src/gallium/state_trackers/xvmc/tests/test_blocks.c index 0baed19a6ef..a35838f3309 100644 --- a/src/gallium/state_trackers/xvmc/tests/test_blocks.c +++ b/src/gallium/state_trackers/xvmc/tests/test_blocks.c @@ -26,7 +26,8 @@ **************************************************************************/ #include -#include +#include +#include #include "testlib.h" int main(int argc, char **argv) @@ -62,7 +63,8 @@ int main(int argc, char **argv) )) { XCloseDisplay(display); - error(1, 0, "Error, unable to find a good port.\n"); + fprintf(stderr, "Error, unable to find a good port.\n"); + exit(1); } if (is_overlay) diff --git a/src/gallium/state_trackers/xvmc/tests/test_context.c b/src/gallium/state_trackers/xvmc/tests/test_context.c index 1b9b0406790..344ac76decc 100644 --- a/src/gallium/state_trackers/xvmc/tests/test_context.c +++ b/src/gallium/state_trackers/xvmc/tests/test_context.c @@ -26,7 +26,8 @@ **************************************************************************/ #include -#include +#include +#include #include "testlib.h" int main(int argc, char **argv) @@ -58,7 +59,8 @@ int main(int argc, char **argv) )) { XCloseDisplay(display); - error(1, 0, "Error, unable to find a good port.\n"); + fprintf(stderr, "Error, unable to find a good port.\n"); + exit(1); } if (is_overlay) diff --git a/src/gallium/state_trackers/xvmc/tests/test_rendering.c b/src/gallium/state_trackers/xvmc/tests/test_rendering.c index 5bfbea726b7..b3b3794810d 100644 --- a/src/gallium/state_trackers/xvmc/tests/test_rendering.c +++ b/src/gallium/state_trackers/xvmc/tests/test_rendering.c @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include "testlib.h" #define BLOCK_WIDTH 8 @@ -84,9 +84,9 @@ static void ParseArgs(int argc, char **argv, unsigned int *output_width, unsigne } if (fail) - error - ( - 1, 0, + { + fprintf( + stderr, "Bad argument.\n" "\n" "Usage: %s [options]\n" @@ -96,6 +96,8 @@ static void ParseArgs(int argc, char **argv, unsigned int *output_width, unsigne "\t-p\tPrompt for quit\n", argv[0] ); + exit(1); + } } static void Gradient(short *block, unsigned int start, unsigned int stop, int horizontal, unsigned int intra_unsigned) @@ -166,7 +168,8 @@ int main(int argc, char **argv) )) { XCloseDisplay(display); - error(1, 0, "Error, unable to find a good port.\n"); + fprintf(stderr, "Error, unable to find a good port.\n"); + exit(1); } if (is_overlay) diff --git a/src/gallium/state_trackers/xvmc/tests/test_subpicture.c b/src/gallium/state_trackers/xvmc/tests/test_subpicture.c index ae0bc8b5a73..57ba1c75138 100644 --- a/src/gallium/state_trackers/xvmc/tests/test_subpicture.c +++ b/src/gallium/state_trackers/xvmc/tests/test_subpicture.c @@ -26,7 +26,6 @@ **************************************************************************/ #include -#include #include #include #include "testlib.h" @@ -87,7 +86,8 @@ int main(int argc, char **argv) )) { XCloseDisplay(display); - error(1, 0, "Error, unable to find a good port.\n"); + fprintf(stderr, "Error, unable to find a good port.\n"); + exit(1); } if (is_overlay) diff --git a/src/gallium/state_trackers/xvmc/tests/test_surface.c b/src/gallium/state_trackers/xvmc/tests/test_surface.c index 8145686a0ee..964ca82c506 100644 --- a/src/gallium/state_trackers/xvmc/tests/test_surface.c +++ b/src/gallium/state_trackers/xvmc/tests/test_surface.c @@ -26,7 +26,8 @@ **************************************************************************/ #include -#include +#include +#include #include "testlib.h" int main(int argc, char **argv) @@ -59,7 +60,8 @@ int main(int argc, char **argv) )) { XCloseDisplay(display); - error(1, 0, "Error, unable to find a good port.\n"); + fprintf(stderr, "Error, unable to find a good port.\n"); + exit(1); } if (is_overlay)