projects
/
qemu-gpiodev
/
libgpiod.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be0906c
)
tests: remove debug asserts
author
Kent Gibson
<warthog618@gmail.com>
Wed, 27 May 2020 01:09:04 +0000
(09:09 +0800)
committer
Bartosz Golaszewski
<bgolaszewski@baylibre.com>
Wed, 27 May 2020 12:04:31 +0000
(14:04 +0200)
Remove asserts that are a hangover from debugging test cases.
Signed-off-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
tests/tests-line.c
patch
|
blob
|
history
diff --git
a/tests/tests-line.c
b/tests/tests-line.c
index 97b7df9293887a6c62d985ced7a77bbc87aa6fdf..334046f805c29c150a259bfc5c6d6877998c690d 100644
(file)
--- a/
tests/tests-line.c
+++ b/
tests/tests-line.c
@@
-980,7
+980,6
@@
GPIOD_TEST_CASE(misc_flags_work_together, 0, { 8 })
ret = gpiod_line_get_value(line);
g_assert_cmpint(ret, ==, 1);
- g_assert_cmpint(errno, ==, 0);
gpiod_line_release(line);
@@
-1001,7
+1000,6
@@
GPIOD_TEST_CASE(misc_flags_work_together, 0, { 8 })
ret = gpiod_line_get_value(line);
g_assert_cmpint(ret, ==, 0);
- g_assert_cmpint(errno, ==, 0);
gpiod_line_release(line);
}