Message ID | 20201104234228.2257427-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Luiz Von Dentz |
Headers | show |
Series | [v2,1/8] doc: Add tester.config | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=377723 ---Test result--- ############################## Test: CheckPatch - FAIL Output: mgmt-tester: Update set_connectable_off_adv_param WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line) #16: Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00) - total: 0 errors, 1 warnings, 78 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. "[PATCH] mgmt-tester: Update set_connectable_off_adv_param" has style problems, please review. NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPLIT_STRING SSCANF_TO_KSTRTO NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. ############################## Test: CheckGitLint - FAIL Output: mgmt-tester: Update set_connectable_off_adv_param 13: B1 Line exceeds max length (89>80): " Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)" ############################## Test: CheckBuild - PASS ############################## Test: MakeCheck - PASS --- Regards, Linux Bluetooth
Hi, On Wed, Nov 4, 2020 at 4:54 PM <bluez.test.bot@gmail.com> wrote: > > This is automated email and please do not reply to this email! > > Dear submitter, > > Thank you for submitting the patches to the linux bluetooth mailing list. > This is a CI test results with your patch series: > PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=377723 > > ---Test result--- > > ############################## > Test: CheckPatch - FAIL > Output: > mgmt-tester: Update set_connectable_off_adv_param > WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line) > #16: > Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00) > > - total: 0 errors, 1 warnings, 78 lines checked > > NOTE: For some of the reported defects, checkpatch may be able to > mechanically convert to the typical style using --fix or --fix-inplace. > > "[PATCH] mgmt-tester: Update set_connectable_off_adv_param" has style problems, please review. > > NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPLIT_STRING SSCANF_TO_KSTRTO > > NOTE: If any of the errors are false positives, please report > them to the maintainer, see CHECKPATCH in MAINTAINERS. > > > ############################## > Test: CheckGitLint - FAIL > Output: > mgmt-tester: Update set_connectable_off_adv_param > 13: B1 Line exceeds max length (89>80): " Filter policy: Allow Scan Request from Any, Allow Connect Request from Any (0x00)" > > > ############################## > Test: CheckBuild - PASS > > ############################## > Test: MakeCheck - PASS Pushed.
diff --git a/doc/tester.config b/doc/tester.config new file mode 100644 index 000000000..e90899714 --- /dev/null +++ b/doc/tester.config @@ -0,0 +1,48 @@ +CONFIG_VIRTIO=y +CONFIG_VIRTIO_PCI=y + +CONFIG_NET=y +CONFIG_INET=y + +CONFIG_NET_9P=y +CONFIG_NET_9P_VIRTIO=y + +CONFIG_9P_FS=y +CONFIG_9P_FS_POSIX_ACL=y + +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_NR_UARTS=4 + +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y + +CONFIG_DEVTMPFS=y +CONFIG_DEBUG_FS=y + +CONFIG_BT=y +CONFIG_BT_BREDR=y +CONFIG_BT_RFCOMM=y +CONFIG_BT_BNEP=y +CONFIG_BT_HIDP=y +CONFIG_BT_LE=y + +CONFIG_BT_HCIVHCI=y + +CONFIG_CRYPTO_CMAC=y +CONFIG_CRYPTO_USER_API=y +CONFIG_CRYPTO_USER_API_HASH=y +CONFIG_CRYPTO_USER_API_SKCIPHER=y + +CONFIG_UNIX=y + +CONFIG_UHID=y + +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_DEBUG_SPINLOCK=y +CONFIG_DEBUG_LOCK_ALLOC=y +CONFIG_PROVE_LOCKING=y +CONFIG_LOCKDEP=y +CONFIG_DEBUG_MUTEXES=y
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> This adds tester.config which can be used as a reference to create kernel images to be run with test-runner. --- doc/tester.config | 48 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 doc/tester.config