Store, view, and manage the results from xfstests (https://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git/)
Go to file
Anna Schumaker ea2913429c gtk: Create a MessagesView
The MessagesView combines two MessageViews into a split-pane card. This
lets us display stdout and stderr side-by-side to the user so they can
see what is going on. I also add a 'back' button that the user can click
to signal that they are done reviewing the output.

Signed-off-by: Anna Schumaker <anna@nowheycreamery.com>
2023-08-31 15:34:18 -04:00
tests gtk: Create a MessagesView 2023-08-31 15:34:18 -04:00
xfstestsdb gtk: Create a MessagesView 2023-08-31 15:34:18 -04:00
.gitignore gtk: Put the TestResultList behind a TestCaseFilter 2023-08-14 13:41:02 -04:00
LICENSE Initial commit 2023-01-30 10:15:47 -05:00
Makefile gtk: Put the TestResultList behind a TestCaseFilter 2023-08-14 13:41:02 -04:00
README.md Update 'README.md' 2023-02-16 16:15:56 -05:00
pytest.ini xfstestsdb: Create the root xfstestsdb Command 2023-02-13 12:01:46 -05:00
xfstestsdb.py xfstestsdb: Create the root xfstestsdb Command 2023-02-13 12:01:46 -05:00

README.md

xfstestsdb

Store, view, and manage the results from the xfstests filesystem test suite.

Basic Usage

Start by creating a new run in the database using the xfstestsdb new command, passing a name for your test device.

$ xfstestsdb new /dev/vdb1
created run #1 with test device '/dev/vdb1'

Now run xfstests, making sure you request an xunit report.

(xfstests-dev) $ ./check -R xunit

And add the generated xunit file to xfstestsdb using xfstestsdb read passing the run number given by xfstestsdb new

$ xfstestsdb xunit read 1 result.xunit
Created run #1 'result' with 567 tests

Now you can use the commands xfstestsdb show, xfstestsdb testcase list, and xfstestsdb testcase show to view the results.

See the wiki for more commands and detailed usage.