From ea39fade07c7b7e9f28e61baab8ddbbb3a3591c1 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Fri, 24 Jan 2020 12:45:46 +0100 Subject: [PATCH] tests/rlcmac: Don't check stderr output Current stderr output is empty anyway, and not checking it allows enavling different log levels to easily debug issues. Change-Id: I5b12e919e08a6eeaad31a459e5a15fdee4d76a61 --- tests/Makefile.am | 2 +- tests/rlcmac/RLCMACTest.err | 0 tests/testsuite.at | 3 +-- 3 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 tests/rlcmac/RLCMACTest.err diff --git a/tests/Makefile.am b/tests/Makefile.am index c5996360..c9a376f8 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -136,7 +136,7 @@ $(srcdir)/package.m4: $(top_srcdir)/configure.ac EXTRA_DIST = \ testsuite.at $(srcdir)/package.m4 $(TESTSUITE) \ - rlcmac/RLCMACTest.ok rlcmac/RLCMACTest.err \ + rlcmac/RLCMACTest.ok \ alloc/AllocTest.ok alloc/AllocTest.err \ tbf/TbfTest.err \ bitcomp/BitcompTest.ok bitcomp/BitcompTest.err \ diff --git a/tests/rlcmac/RLCMACTest.err b/tests/rlcmac/RLCMACTest.err deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/testsuite.at b/tests/testsuite.at index 8a319bd8..fe87ff9d 100644 --- a/tests/testsuite.at +++ b/tests/testsuite.at @@ -5,8 +5,7 @@ AT_BANNER([Regression tests]) AT_SETUP([rlcmac]) AT_KEYWORDS([rlcmac]) cat $abs_srcdir/rlcmac/RLCMACTest.ok > expout -cat $abs_srcdir/rlcmac/RLCMACTest.err > experr -AT_CHECK([$OSMO_QEMU $abs_top_builddir/tests/rlcmac/RLCMACTest], [0], [expout], [experr]) +AT_CHECK([$OSMO_QEMU $abs_top_builddir/tests/rlcmac/RLCMACTest], [0], [expout], [ignore]) AT_CLEANUP AT_SETUP([multi_slot])