[ { "id": "1f", "name": "simple test to test framework", "category": [ "example" ], "setup": [ "mkdir mytest" ], "cmdUnderTest": "touch mytest/blorfl", "expExitCode": "0", "verifyCmd": "ls mytest/* | grep '[b]lorfl'", "matchPattern": "orfl", "matchCount": "1", "teardown": [ "rm -rf mytest" ] }, { "id": "2f", "name": "simple test, no need for verify", "category": [ "example" ], "setup": [ "mkdir mytest", "touch mytest/blorfl" ], "cmdUnderTest": "ls mytest/blorfl", "expExitCode": "0", "verifyCmd": "/bin/true", "matchPattern": " ", "matchCount": "0", "teardown": [ "rm -rf mytest" ] }, { "id": "3f", "name": "simple test, no need for setup or teardown (or verify)", "category": [ "example" ], "setup": [ ], "cmdUnderTest": "ip l l lo", "expExitCode": "0", "verifyCmd": "/bin/true", "matchPattern": " ", "matchCount": "0", "teardown": [ ] } ] y Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/uwb
AgeCommit message (Expand)Author
2017-05-25uwb: i1480: add missing gotoGustavo A. R. Silva
2017-05-17uwb: fix device quirk on big-endian hostsJohan Hovold
2017-03-14uwb: i1480-dfu: fix NULL-deref at probeJohan Hovold
2017-03-14uwb: hwa-rc: fix NULL-deref at probeJohan Hovold
2016-11-01uwb: fix device reference leaksJohan Hovold
2016-08-15uwb: hwa-rc: don't print error when allocating urb failsWolfram Sang
2015-12-01uwb: uwbd() is not freezable kthreadJiri Kosina
2015-11-04Merge tag 'driver-core-4.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/...Linus Torvalds
2015-10-24uwb: drp: Use setup_timerMuhammad Falak R Wani
2015-10-24uwb: neh: Use setup_timerMuhammad Falak R Wani
2015-10-24uwb: rsv: Use setup_timerMuhammad Falak R Wani
2015-10-04debugfs: Pass bool pointer to debugfs_create_bool()Viresh Kumar
2015-03-18uwb: Remove umc bus legacy suspend/resume supportLars-Peter Clausen
2015-03-18uwb/whci: Delete an unnecessary check before the function call "umc_device_un...Markus Elfring
2015-02-15Merge tag 'usb-3.20-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gre...Linus Torvalds
2015-02-13usb: use %*pb[l] to print bitmaps including cpumasks and nodemasksTejun Heo
2015-01-25uwb: lc-dev: Remove unused functionRickard Strandqvist
2014-11-03uwb: Remove bogus colon after newline from debug messageGeert Uytterhoeven
2014-09-23uwb: add an ASIE sysfs attribute to uwb_rc devicesThomas Pugliese
2014-09-23uwb: create a uwb bus type and add in-range peer devices to itThomas Pugliese
2014-09-23uwb: remove UWB build dependency on PCIThomas Pugliese
2014-09-23uwb: update uwb device prints to be more usefulThomas Pugliese
2014-09-23uwb: line length cleanupThomas Pugliese
2014-09-08uwb: init beacon cache entry before registering uwb deviceThomas Pugliese
2014-08-01uwb/whci: use correct structure type name in sizeofJulia Lawall
2014-05-27uwb: fix variable set but not used warningsThomas Pugliese
2014-05-27uwb: comment typo fixThomas Pugliese
2014-05-27uwb: whitespace and line length cleanupsThomas Pugliese
2014-05-27uwb: add error messages when reservation establish failsThomas Pugliese
2014-05-27uwb: fix channel change failureThomas Pugliese
2014-04-24uwb: don't call spin_unlock_irq in a USB completion handlerThomas Pugliese
2014-04-16uwb: adds missing error handlingDaeseok Youn