summaryrefslogtreecommitdiffstats
path: root/unit
AgeCommit message (Collapse)AuthorFilesLines
2012-09-17unit: Add test to check CBS padding characterGuillaume Zajac1-0/+59
This CBS unit test is used to check that the <CR> character can be interpreted as a wanted carriage return and not necessarily as a padding character.
2012-08-16unit: Add a unit test for empty sim stringsDenis Kenzior1-0/+6
2012-07-17unit: Simplify previous commitDenis Kenzior1-8/+3
2012-07-17unit: Update test_invalid() unit testGuillaume Zajac1-3/+23
2012-07-15unit: Avoid shadowing data variableMarcel Holtmann1-3/+3
2012-07-15unit: Avoid shadowing hex_packed variableMarcel Holtmann1-2/+2
2011-10-10unit: Update copyright informationMarcel Holtmann10-22/+22
2011-06-30build: Split non-root unit tests to have make check succeedMarcel Holtmann2-55/+97
2011-05-24test: Add CDMA SMS SupportLei Yu1-0/+114
2011-03-31unit: Minor whitespace issuesDenis Kenzior1-1/+1
2011-03-31test-stkutil: Add unit tests for BIP commandsPhilippe Nunes1-17/+1153
2011-03-21unit: fix broken alpha id unit test casesJeevaka Badrappan1-3/+4
2011-01-20unit: unit test for sim_parse_app_template_entriesAndrzej Zaborowski1-0/+32
2011-01-12unit: M15 coding style fixJeevaka Badrappan6-39/+39
2011-01-05unit: add error status support for failure casesJeevaka Badrappan1-4/+8
2010-12-16test-stkutil: Modify the check logic of time zoneYang Gu1-1/+5
2010-12-10unit: Fix up stk test data timezone handlingDenis Kenzior1-0/+6
2010-12-10unit: Use empty text instead of NULLDenis Kenzior1-2/+4
2010-12-09test: Fixup build issues with test-smsDenis Kenzior1-8/+8
2010-12-08unit: Minor style updates to test-smsDenis Kenzior1-30/+27
2010-12-08unit: add national dialect SMS character set testsOleg Zhurakivskyy1-0/+244
2010-11-29unit: explicitly compare pointers to NULLLucas De Marchi3-4/+4
This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // <smpl> @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // </smpl>
2010-11-02unit: Update test-sms to the new APIDenis Kenzior1-6/+6
2010-09-26unit: Fix some copyright and license headersMarcel Holtmann2-26/+26
2010-09-22unit: Make test-sms less verboseDenis Kenzior1-3/+5
2010-09-22unit: add fuzzy address check to test-smsPetteri Tikander1-1/+42
2010-09-21unit: Update test-sms to the new sr assembly apiDenis Kenzior1-8/+11
2010-09-14test-util: Update unit testDenis Kenzior1-1/+1
2010-09-14test-util: Fixup various style issuesDenis Kenzior1-7/+16
2010-09-14test-util: test for UCS2 to GSM conversionJeevaka Badrappan1-0/+80
2010-09-10unit: Add unit test for status report expirationPetteri Tikander1-0/+7
2010-08-17test-sms: Add basic SMS WAP-PUSH decoder testDenis Kenzior1-0/+86
2010-08-17test-sms: Unify some copy-pasted codeDenis Kenzior1-84/+60
2010-07-26test-stkutil: unit test for img to xpm converterKristen Carlson Accardi1-0/+247
2010-07-13test-stkutil: add html attribute tests for setup idle mode testsKristen Carlson Accardi1-16/+68
2010-07-13test-stkutil: add html attribute test for select_item_testKristen Carlson Accardi1-16/+67
2010-07-13test-stkutil: add html attribute test for setup_menu_testKristen Carlson Accardi1-12/+47
2010-07-13test-stkutil: add html attribute tests for play_tone_testKristen Carlson Accardi1-16/+66
2010-07-13test-stkutil: add html attribute tests for get_input_testKristen Carlson Accardi1-16/+59
2010-07-13test-stkutil: add html attribute tests for get_inkey_testKristen Carlson Accardi1-16/+59
2010-07-13test-stkutil: add html attribute test for Display Text testsKristen Carlson Accardi1-0/+211
2010-07-13test-stkutil: add unit test for html text attributesKristen Carlson Accardi1-0/+96
2010-07-13test-sms: Update with a real EMS testDenis Kenzior1-45/+173
2010-07-09Interpret "" Alpha Id as empty data objectYang Gu1-4/+14
There needs to be a way to distinguish between no alphaid and "empty data object" because on some occasions they have different meanings. In the Call Control envelope, no Alpha Identifier means the terminal can inform the user about the call being modified by SIM while empty data object means no hint should be given.
2010-07-08test-sms: Fix a memory leakDenis Kenzior1-0/+1
2010-07-02test-stkutil: Fix always true condition.Andrzej Zaborowski1-47/+227
2010-07-02test-stkutil: Fix some memory leaksDenis Kenzior1-0/+5
2010-07-02stkutil: Move scaddr field to gsm_smsAndrzej Zaborowski1-92/+113
2010-06-23stkutil: Refactor command parser error handlingAndrzej Zaborowski1-2/+38
When parsing the full command fails but Command Details has been parsed, return a struct stk_command containing this information and the type of parsing problem found. We need the command details to be able to even respond to the command. This patch also makes the parser skip over unknown data objects found in the BER-TLV, if they don't have Comprehension Required set.
2010-06-21test-common: Avoid accessing an unitialised variable.Andrzej Zaborowski1-1/+1
Fixes a segfault, reported by valrgind as: [...] ==6300== Use of uninitialised value of size 4 ==6300== at 0x8048B4D: test_invalid (test-common.c:81)