aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-01-08 12:54:52 -0500
committerDavid Robillard <d@drobilla.net>2023-01-08 12:54:52 -0500
commita3ccd8a4c5125bd12c017261ffdbc0de7759d62b (patch)
treef8f89a36fd92f78fb51eeb9be7abb84791eae549 /test
parent1efbab15eed92c5579a5c0348794e8b9b48732a8 (diff)
downloadpugl-a3ccd8a4c5125bd12c017261ffdbc0de7759d62b.tar.gz
pugl-a3ccd8a4c5125bd12c017261ffdbc0de7759d62b.tar.bz2
pugl-a3ccd8a4c5125bd12c017261ffdbc0de7759d62b.zip
Gracefully handle out of range hints
Diffstat (limited to 'test')
-rw-r--r--test/test_stub_hints.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_stub_hints.c b/test/test_stub_hints.c
index 0ff9e5b..d5331c8 100644
--- a/test/test_stub_hints.c
+++ b/test/test_stub_hints.c
@@ -36,6 +36,12 @@ main(void)
puglSetEventFunc(view, onEvent);
puglSetSizeHint(view, PUGL_DEFAULT_SIZE, 512, 512);
+ // Check invalid cases
+ assert(puglSetViewHint(view, (PuglViewHint)-1, 0) == PUGL_BAD_PARAMETER);
+ assert(puglSetViewHint(view, (PuglViewHint)9999, 0) == PUGL_BAD_PARAMETER);
+ assert(puglGetViewHint(view, (PuglViewHint)-1) == PUGL_DONT_CARE);
+ assert(puglGetViewHint(view, (PuglViewHint)9999) == PUGL_DONT_CARE);
+
// Set all relevant hints that support it to PUGL_DONT_CARE
assert(!puglSetViewHint(view, PUGL_RED_BITS, PUGL_DONT_CARE));
assert(!puglSetViewHint(view, PUGL_GREEN_BITS, PUGL_DONT_CARE));