On Mon, Dec 19, 2022 at 04:01:37PM -0800, Darrick J. Wong wrote: > From: Darrick J. Wong <djwong@xxxxxxxxxx> > > Record various generic information about an fstests run when generating > a junit xml report. This includes the cpu architecture, the kernel > revision, the CPU, memory, and numa node counts, and some information > about the block devices passed in. It would be nice if there was a way that the test runner could pass information that would be added to the xunit properties. As I mentioned in another e-mail, I currently do this via a post-processing step which adds the properties to the junit xml file via a python script. And there are a number of additional properties that are used by my report generator[1] which takes the junit xml file as input, and generates a summary report which is convenient for humans. [1] https://github.com/tytso/xfstests-bld/blob/master/test-appliance/files/usr/local/bin/gen_results_summary Some of these properties include the version of xfstests, xfsprogs, and other key software components (for example, I've had test failures traced to bugs in fio, so knowing the version of fio that is used is super-handy). So maybe we could pass in a properties file, either via a command-line option or an environment variable? My script[2] uses a colon separated format, but I'm not wedded to that delimiter. CMDLINE: "-c f2fs/default -g auto" FSTESTIMG: gce-xfstests/xfstests-amd64-202212131454 FSTESTPRJ: gce-xfstests KERNEL: kernel 6.1.0-xfstests #2 SMP PREEMPT_DYNAMIC Mon Dec 12 16:09:40 EST 2022 x86_64 FSTESTVER: blktests 068bd2a (Fri, 18 Nov 2022 08:38:35 +0900) FSTESTVER: fio fio-3.31 (Tue, 9 Aug 2022 14:41:25 -0600) FSTESTVER: fsverity v1.5 (Sun, 6 Feb 2022 10:59:13 -0800) FSTESTVER: ima-evm-utils v1.3.2 (Wed, 28 Oct 2020 13:18:08 -0400) FSTESTVER: nvme-cli v1.16 (Thu, 11 Nov 2021 13:09:06 -0800) FSTESTVER: quota v4.05-52-gf7e24ee (Tue, 1 Nov 2022 11:45:06 +0100) FSTESTVER: util-linux v2.38.1 (Thu, 4 Aug 2022 11:06:21 +0200) FSTESTVER: xfsprogs v6.0.0 (Mon, 14 Nov 2022 12:06:23 +0100) FSTESTVER: xfstests-bld 65edab38 (Wed, 30 Nov 2022 12:11:57 -0500) FSTESTVER: xfstests v2022.11.27-8-g3c178050c (Wed, 30 Nov 2022 10:25:39 -0500) FSTESTVER: zz_build-distro bullseye FSTESTCFG: "f2fs/default" FSTESTSET: "-g auto" FSTESTEXC: "" FSTESTOPT: "aex" MNTOPTS: "" CPUS: "2" MEM: "7680" DMI_MEM: 8 GB (Max capacity) PARAM_MEM: 7680 (restricted by cmdline) GCE ID: "3198461547210171740" MACHINE TYPE: "e2-standard-2" TESTRUNID: tytso-20221213150813 [2] https://github.com/tytso/xfstests-bld/blob/master/test-appliance/files/usr/local/bin/update_properties_xunit Cheers, - Ted