tests: event: fix the active-low switch test case
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 7 Aug 2019 08:16:40 +0000 (10:16 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 7 Aug 2019 08:16:40 +0000 (10:16 +0200)
Kernel commit 223ecaf140b1 ("gpiolib: fix incorrect IRQ requesting of
an active-low lineevent") fixed an issue with line events not being
inverted with the GPIOHANDLE_REQUEST_ACTIVE_LOW flag. This change has
now been released in linux v5.2.7 and the relevant test case must be
adjusted.

Convert the test case to expect a falling edge event. Since the first
pull change will be 0->1, it will be interpreted as such when the
active-low flag is used.

The minimum kernel version to run the core test-suite is now set to
v5.2.7.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
tests/gpiod-test.c
tests/tests-event.c

index 21e553702961f8bec333c232f94e88a1862ff246..7fc874416e521030325e2a417984260083652e34 100644 (file)
@@ -16,8 +16,8 @@
 #include "gpiod-test.h"
 
 #define MIN_KERNEL_MAJOR       5
-#define MIN_KERNEL_MINOR       1
-#define MIN_KERNEL_RELEASE     0
+#define MIN_KERNEL_MINOR       2
+#define MIN_KERNEL_RELEASE     7
 #define MIN_KERNEL_VERSION     KERNEL_VERSION(MIN_KERNEL_MAJOR, \
                                               MIN_KERNEL_MINOR, \
                                               MIN_KERNEL_RELEASE)
index 51b22818d14a8e53eb6d2a3826f8a1962e7ecdbb..9e372ccd5ee7474dc9a380cf29911023e45f5f04 100644 (file)
@@ -117,7 +117,7 @@ GPIOD_TEST_CASE(rising_edge_ignore_falling, 0, { 8 })
        g_assert_cmpint(ev[2].event_type, ==, GPIOD_LINE_EVENT_RISING_EDGE);
 }
 
-GPIOD_TEST_CASE(rising_edge_active_low, 0, { 8 })
+GPIOD_TEST_CASE(falling_edge_active_low, 0, { 8 })
 {
        g_autoptr(GpiodTestEventThread) ev_thread = NULL;
        g_autoptr(gpiod_chip_struct) chip = NULL;
@@ -134,7 +134,7 @@ GPIOD_TEST_CASE(rising_edge_active_low, 0, { 8 })
        g_assert_nonnull(line);
        gpiod_test_return_if_failed();
 
-       ret = gpiod_line_request_rising_edge_events_flags(line,
+       ret = gpiod_line_request_falling_edge_events_flags(line,
                GPIOD_TEST_CONSUMER, GPIOD_LINE_REQUEST_FLAG_ACTIVE_LOW);
        g_assert_cmpint(ret, ==, 0);
 
@@ -146,7 +146,7 @@ GPIOD_TEST_CASE(rising_edge_active_low, 0, { 8 })
        ret = gpiod_line_event_read(line, &ev);
        g_assert_cmpint(ret, ==, 0);
 
-       g_assert_cmpint(ev.event_type, ==, GPIOD_LINE_EVENT_RISING_EDGE);
+       g_assert_cmpint(ev.event_type, ==, GPIOD_LINE_EVENT_FALLING_EDGE);
 }
 
 GPIOD_TEST_CASE(get_value, 0, { 8 })