diff options
author | Harald Welte <laforge@gnumonks.org> | 2017-06-18 18:16:02 +0300 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2017-07-10 23:42:02 +0200 |
commit | 1389e86d116509884b0e5ee3421fe7683afcab9b (patch) | |
tree | 52ef42f5f49ac3ae52e687cbc7207426fd11e075 /tests/testsuite.at | |
parent | 548e3712009f68f801be806884d848b47c30dced (diff) |
Add pseudo-random bit sequence generator to libosmcoore
These PRBS sequences are specified in ITU-T O.150. They are typically
used as test data to be transmitted for BER (bit error rate) testing.
Change-Id: I227b6a6e86a251460ecb816afa9a7439d5fb94d1
Diffstat (limited to 'tests/testsuite.at')
-rw-r--r-- | tests/testsuite.at | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/testsuite.at b/tests/testsuite.at index 63027d96..f148cf5a 100644 --- a/tests/testsuite.at +++ b/tests/testsuite.at @@ -280,3 +280,9 @@ AT_KEYWORDS([sercomm]) cat $abs_srcdir/sercomm/sercomm_test.ok > expout AT_CHECK([$abs_top_builddir/tests/sercomm/sercomm_test], [0], [expout], [ignore]) AT_CLEANUP + +AT_SETUP([prbs]) +AT_KEYWORDS([prbs]) +cat $abs_srcdir/prbs/prbs_test.ok > expout +AT_CHECK([$abs_top_builddir/tests/prbs/prbs_test], [0], [expout], [ignore]) +AT_CLEANUP |