summaryrefslogtreecommitdiff
path: root/cesar/cl/test
diff options
context:
space:
mode:
authorlaranjeiro2009-04-10 13:05:58 +0000
committerlaranjeiro2009-04-10 13:05:58 +0000
commit2d72efa34eae791d6187077bf0dbaef12b6d1adb (patch)
tree5c0f3828ce832642e71518ec36292a7c24cf0895 /cesar/cl/test
parente9600af43525422cc21e38534fc5d48c278b9aa4 (diff)
cl:
* Fix the functional test. git-svn-id: svn+ssh://pessac/svn/cesar/trunk@4445 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/cl/test')
-rw-r--r--cesar/cl/test/functional/src/cl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cesar/cl/test/functional/src/cl.c b/cesar/cl/test/functional/src/cl.c
index 51eb3a058e..6f81dfa0c0 100644
--- a/cesar/cl/test/functional/src/cl.c
+++ b/cesar/cl/test/functional/src/cl.c
@@ -96,7 +96,7 @@ cl_data_tx_send (test_t test)
tei = 0;
lid = 0;
- cl_data_send (cl, buffer, 106, 0);
+ cl_data_send (cl, buffer, 106, 0, 123);
test_fail_unless (tei == MAC_TEI_UNASSOCIATED);
test_fail_unless (lid == 0);
@@ -113,7 +113,7 @@ cl_data_tx_send (test_t test)
mac_config.tei = 1;
mac_config.authenticated = true;
- cl_data_send (cl, buffer, 106, 0);
+ cl_data_send (cl, buffer, 106, 0, 123);
test_fail_unless (tei == MAC_TEI_BCAST);
test_fail_unless (lid == 1);
@@ -141,7 +141,7 @@ cl_data_tx_send (test_t test)
cl_mactotei_addr_add (table, 0x123456789ABCull, 2, 1);
cl_mactotei_use_table (cl, table);
- cl_data_send (cl, buffer, 106, 0);
+ cl_data_send (cl, buffer, 106, 0, 123);
test_fail_unless (tei == 2);
test_fail_unless (lid == 1);
@@ -396,7 +396,7 @@ phy_date (phy_t *phy)
void
sar_msdu_add (sar_t *ctx, u8 *buffer, u16 length, u32 ats_confounder,
- mfs_tx_t *mfs, void *user_data)
+ mfs_tx_t *mfs, void *user_data, u32 arrival_time_ntb)
{
dbg_assert (ctx);
dbg_assert (mfs);