summaryrefslogtreecommitdiff
path: root/third_party/srtp/test/roc_driver.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/srtp/test/roc_driver.c')
-rw-r--r--third_party/srtp/test/roc_driver.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/third_party/srtp/test/roc_driver.c b/third_party/srtp/test/roc_driver.c
index 396c9a79..6fdc6f19 100644
--- a/third_party/srtp/test/roc_driver.c
+++ b/third_party/srtp/test/roc_driver.c
@@ -44,6 +44,10 @@
*/
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
#include <stdio.h>
/*
@@ -138,6 +142,12 @@ roc_test(int num_trials) {
ref, local, est, ircvd, delta);
#endif
+ if (local + delta != est) {
+ printf(" *bad delta*: local %llu + delta %d != est %llu\n",
+ (unsigned long long)local, delta, (unsigned long long)est);
+ return err_status_algo_fail;
+ }
+
/* now update local xtd_seq_num_t as necessary */
if (delta > 0)
index_advance(&local, delta);