aboutsummaryrefslogtreecommitdiffstats
path: root/tests
AgeCommit message (Collapse)AuthorFilesLines
2009-01-04Add test case that is not registering the timer againHolger Freyther1-0/+8
yesterday's crash with the llist_del instead of using del_timer was due this kind of bug. Add a test case.
2009-01-01Change the subscriber and database backendHolger Freyther2-14/+49
gsm_subscriber is now refcounted, the db backend is leaking a lot less, db_get_subscriber will allocate the subscr record now, subscr_* will look up a subscriber in the list of currently active subscribers and add an ref to this one. The db test cases pass, more testing will be when next to the bts
2009-01-01Do not call rsl_chan_release directly but use the use_count of the lchanHolger Freyther1-0/+1
Call use_lchan early in allocate_loc_updating_req, do not directly call rsl_chan_release but go through channel alloc to take the use_count into account.
2008-12-31Move the db_test.c to a specific test directoryHolger Freyther3-1/+76
2008-12-31Make the test compile againHolger Freyther1-0/+1
2008-12-29Implement sending SMS and send one on network registrationDaniel Willmann2-0/+3
2008-12-29ACK sms-submitDaniel Willmann1-2/+9
2008-12-28Add stubs to test gsm0408 functionality including LAIHolger Freyther3-1/+85
2008-12-28Add second test SMSDaniel Willmann2-23/+77
2008-12-28working state up to location update and classmark inquiryHarald Welte1-0/+2
2008-12-28Add SMS (GSM 04.11) testing programDaniel Willmann3-1/+55
2008-12-28Start implementing GSM 04.11 (short message service)Daniel Willmann1-3/+3
2008-12-27sms.txt: Analyze CP-DATA, RP-DATA, TPDUDaniel Willmann1-0/+32
2008-12-27smsHarald Welte1-0/+1
2008-12-27Prefix debug symbols with debug_ to reduce the namesapce pollutionHolger Freyther1-2/+2
2008-12-27Add code to parse a debug category stringHolger Freyther3-1/+39
Use strdup to be able to use strtok on the category string and add a test case. Also safe some more information to be able to use color in the print statement.
2008-12-27Make the test timer a noinst programHolger Freyther1-1/+1
2008-12-27Introduce a simple timer API....Holger Freyther3-0/+68
One can use add_timer or schedule_timer to add a timer. After the timeout time has been reached the callback will be called. One can call add_time/schedule_timer and del_timer from within the callback.