summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2007-08-21 16:06:10 +0000
committerGeert Uytterhoeven <geert@linux-m68k.org>2007-08-21 16:06:10 +0000
commitb85afa73438e6f695138e894e4f8ae0f8d942de8 (patch)
treeb83c8a5951fbf5167dca8008ad2802a352fbb4e0
parentb7268cc72254c9227b93014f31d79b3020a78b69 (diff)
downloadfbtest-b85afa73438e6f695138e894e4f8ae0f8d942de8.tar.gz
Most tests that use a color palette don't really rely on a real pseudocolor
visual. Use VISUAL_GENERIC instead.
-rw-r--r--tests/test003.c2
-rw-r--r--tests/test005.c2
-rw-r--r--tests/test010.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/test003.c b/tests/test003.c
index 66bfa3f..00b1062 100644
--- a/tests/test003.c
+++ b/tests/test003.c
@@ -40,7 +40,7 @@ static enum test_res test003_func(void)
const struct test test003 = {
.name = "test003",
.desc = "Draw the 16 Linux console colors",
- .visual = VISUAL_PSEUDOCOLOR,
+ .visual = VISUAL_GENERIC,
.reqs = REQF_num_colors,
.num_colors = 16,
.func = test003_func,
diff --git a/tests/test005.c b/tests/test005.c
index f806208..694aa21 100644
--- a/tests/test005.c
+++ b/tests/test005.c
@@ -46,7 +46,7 @@ static enum test_res test005_func(void)
const struct test test005 = {
.name = "test005",
.desc = "Draw the default color palette",
- .visual = VISUAL_PSEUDOCOLOR,
+ .visual = VISUAL_GENERIC,
.func = test005_func,
};
diff --git a/tests/test010.c b/tests/test010.c
index c6e9ed9..6ed97e8 100644
--- a/tests/test010.c
+++ b/tests/test010.c
@@ -42,7 +42,7 @@ static enum test_res test010_func(void)
const struct test test010 = {
.name = "test010",
.desc = "Hello world",
- .visual = VISUAL_PSEUDOCOLOR,
+ .visual = VISUAL_GENERIC,
.reqs = REQF_num_colors,
.num_colors = 16,
.func = test010_func,