diff options
author | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2017-02-21 20:17:35 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2017-02-22 07:29:46 +0000 |
commit | bd9de2f66f82db66bbbe7e7df54bf8fee8e1a8ae (patch) | |
tree | 1e06efdd1c4cf17173661ecf7dfc4d1919c0299b /tests/testsuite.at | |
parent | abb23698d6363e9be368a24c034f5cfa7015a829 (diff) |
gsup_test: also check stderr
Configure logging to be deterministic and add stderr checking to testuite.at.
However, exclude the thousands of message modification log lines from the log
to not have a huge test expectation file.
Change-Id: I0dd7112967a64a168556b62e5ec15107b7608ffb
Diffstat (limited to 'tests/testsuite.at')
-rw-r--r-- | tests/testsuite.at | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/testsuite.at b/tests/testsuite.at index d6181c91..a3be0e7d 100644 --- a/tests/testsuite.at +++ b/tests/testsuite.at @@ -212,7 +212,8 @@ AT_CLEANUP AT_SETUP([gsup]) AT_KEYWORDS([gsup]) cat $abs_srcdir/gsup/gsup_test.ok > expout -AT_CHECK([$abs_top_builddir/tests/gsup/gsup_test], [0], [expout], [ignore]) +cat $abs_srcdir/gsup/gsup_test.err > experr +AT_CHECK([$abs_top_builddir/tests/gsup/gsup_test], [0], [expout], [experr]) AT_CLEANUP AT_SETUP([fsm]) |