diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2011-11-13 09:00:55 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2011-11-14 13:35:41 +0100 |
commit | ad0e8859c296bbcceea3df6330fca5a59d83162d (patch) | |
tree | b76df8f95457fb072c33920f42c260b9c200ec23 | |
parent | f141837ea8f9bf2b1526fa77cefb6d15af8de774 (diff) |
tests: Reduce the iterations for the timertest, ignore stderr
Use one of the magic commands for the stderr, in this case we want
to log the output but ignore it for processing.
http://www.gnu.org/s/hello/manual/autoconf/Writing-Testsuites.html#Writing-Testsuites
-rw-r--r-- | tests/testsuite.at | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testsuite.at b/tests/testsuite.at index df5a5e83..0e917f17 100644 --- a/tests/testsuite.at +++ b/tests/testsuite.at @@ -35,7 +35,7 @@ AT_CLEANUP AT_SETUP([timer]) AT_KEYWORDS([timer]) cat $abs_srcdir/timer/timer_test.ok > expout -AT_CHECK([$abs_top_builddir/tests/timer/timer_test], [], [expout]) +AT_CHECK([$abs_top_builddir/tests/timer/timer_test -s 5], [], [expout], [ignore]) AT_CLEANUP AT_SETUP([ussd]) |