From c68ba91c9cbdcb939033ac55dc12cbbe5cb530f9 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 18 Sep 2000 02:33:52 +0000 Subject: [PATCH] make test programs help output be useful SVN revision: 3524 --- legacy/evas/test/evas_test.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/legacy/evas/test/evas_test.c b/legacy/evas/test/evas_test.c index fea154c6fa..8718a9c45f 100644 --- a/legacy/evas/test/evas_test.c +++ b/legacy/evas/test/evas_test.c @@ -145,6 +145,12 @@ main(int argc, char **argv) printf(" -m [x11 | soft | hard | buf] - rendering mode\n"); printf(" -c colors - maximum colors allocated\n"); printf(" -s [1 | 0] - smooth scaling / rendering\n"); + printf("\n"); + printf("Examples:\n"); + printf(" %s -x 640 -y 480 -m soft - run test in 640x480 in software mode\n", argv[0]); + printf(" %s -x 800 -y 600 -m x11 - run test in 800x600 in X11 mode\n", argv[0]); + printf(" %s -x 1024 -y 768 -m hard - run test in 1024x768 in OpenGL mode\n", argv[0]); + printf(" %s -x 640 -y 480 -m soft -s 0 - run test in 640x480 in software mode, no smooth scaling\n", argv[0]); exit(0); } }