aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/gpio.c28
-rw-r--r--test/gpio_test.h26
-rw-r--r--test/gpio_test_private.h26
-rw-r--r--test/main.c2
-rw-r--r--test/meson.build1
5 files changed, 0 insertions, 83 deletions
diff --git a/test/gpio.c b/test/gpio.c
deleted file mode 100644
index 4811af0..0000000
--- a/test/gpio.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * The Rin Library – library "conformance" tests
- *
- * Copyright (C) 2017 Gediminas Jakutis
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; version 2.1
- * of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "test.h"
-#include "gpio_test_private.h"
-
-int gpio_test(char *testname)
-{
- /* basically a NOOP */
- return ok(0, "");
-}
diff --git a/test/gpio_test.h b/test/gpio_test.h
deleted file mode 100644
index 8d37802..0000000
--- a/test/gpio_test.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * The Rin Library – library "conformance" tests
- *
- * Copyright (C) 2017 Gediminas Jakutis
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; version 2.1
- * of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#ifndef LIBRIN_GPIO_TEST_INCLUDED
-#define LIBRIN_GPIO_TEST_INCLUDED
-
-int gpio_test(char *testname);
-
-#endif /* LIBRIN_GPIO_TEST_INCLUDED */
diff --git a/test/gpio_test_private.h b/test/gpio_test_private.h
deleted file mode 100644
index aa2361d..0000000
--- a/test/gpio_test_private.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * The Rin Library – library "conformance" tests
- *
- * Copyright (C) 2017 Gediminas Jakutis
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; version 2.1
- * of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#ifndef LIBRIN_GPIO_TEST_PRIVATE_INCLUDED
-#define LIBRIN_GPIO_TEST_PRIVATE_INCLUDED
-
-/* NOOP */
-
-#endif /* LIBRIN_GPIO_TEST_PRIVATE_INCLUDED */
diff --git a/test/main.c b/test/main.c
index c87c24c..3ad8540 100644
--- a/test/main.c
+++ b/test/main.c
@@ -21,7 +21,6 @@
#include "test.h"
#include "float_test.h"
#include "diagnostic_test.h"
-#include "gpio_test.h"
#include "time_test.h"
/* TODO: allow individual tests to be selected */
@@ -31,7 +30,6 @@ int main(int argc, char **argv)
static const struct section sections[] = {
{"float", float_test},
{"diagnostic", diagnostic_test},
- {"gpio", gpio_test},
{"time", time_test} };
size_t i;
diff --git a/test/meson.build b/test/meson.build
index b23a438..bae6851 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -3,7 +3,6 @@ test_filenames = [
'test.c',
'float.c',
'diagnostic.c',
- 'gpio.c',
'time.c'
]