aboutsummaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorAleksander Morgado <aleksandermj@chromium.org>2022-10-27 20:41:55 +0000
committerAleksander Morgado <aleksandermj@chromium.org>2022-11-07 14:26:02 +0000
commitf419f56628fdcbf4bd5865d0d61147066ba27b17 (patch)
treef3ba5713b67ca5abc444ebb51140cd5b0ad79f03 /src/tests
parent3c430ce292e2aee7bffb917ba009c9b39646b964 (diff)
build: drop autotools
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/Makefile.am68
1 files changed, 0 insertions, 68 deletions
diff --git a/src/tests/Makefile.am b/src/tests/Makefile.am
deleted file mode 100644
index 617d6128..00000000
--- a/src/tests/Makefile.am
+++ /dev/null
@@ -1,68 +0,0 @@
-
-include $(top_srcdir)/gtester.make
-
-################################################################################
-# common
-################################################################################
-
-AM_CFLAGS = \
- $(WARN_CFLAGS) \
- $(MM_CFLAGS) \
- $(CODE_COVERAGE_CFLAGS) \
- -I$(top_srcdir) \
- -I$(top_srcdir)/include \
- -I$(top_builddir)/include \
- -I$(top_srcdir)/libqcdm/src \
- -I$(top_srcdir)/libmm-glib \
- -I${top_builddir}/libmm-glib/generated \
- -I${top_srcdir}/src/ \
- -I${top_builddir}/src/ \
- -I${top_srcdir}/src/kerneldevice \
- -DTESTUDEVRULESDIR=\"${top_srcdir}/src/\" \
- $(NULL)
-
-LDADD = \
- $(top_builddir)/src/libhelpers.la \
- $(top_builddir)/src/libport.la \
- $(top_builddir)/src/libkerneldevice.la \
- $(NULL)
-
-AM_LDFLAGS = \
- $(WARN_LDFLAGS) \
- $(MM_LIBS) \
- $(CODE_COVERAGE_LDFLAGS) \
- -lutil \
- $(NULL)
-
-if WITH_QMI
-AM_CFLAGS += $(QMI_CFLAGS)
-AM_LDFLAGS += $(QMI_LIBS)
-endif
-
-if WITH_MBIM
-AM_CFLAGS += $(MBIM_CFLAGS)
-AM_LDFLAGS += $(MBIM_LIBS)
-endif
-
-################################################################################
-# tests
-# note: we abuse AM_LDFLAGS to include the libraries being tested
-################################################################################
-
-noinst_PROGRAMS = \
- test-modem-helpers \
- test-charsets \
- test-qcdm-serial-port \
- test-at-serial-port \
- test-sms-part-3gpp \
- test-sms-part-cdma \
- test-udev-rules \
- test-error-helpers \
- test-kernel-device-helpers \
- $(NULL)
-
-if WITH_QMI
-noinst_PROGRAMS += test-modem-helpers-qmi
-endif
-
-TEST_PROGS += $(noinst_PROGRAMS)