Message ID | 161292579650.3504537.2704583548318437413.stgit@magnolia (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | fstests: various improvements to the test framework | expand |
On Tue, Feb 09, 2021 at 06:56:36PM -0800, Darrick J. Wong wrote: > From: Darrick J. Wong <djwong@kernel.org> > > This enables us to mask off specific tests. > > Signed-off-by: Darrick J. Wong <djwong@kernel.org> > --- Seems reasonable: Reviewed-by: Brian Foster <bfoster@redhat.com> > check | 6 ++++++ > 1 file changed, 6 insertions(+) > > > diff --git a/check b/check > index c6ad1d6c..e51cbede 100755 > --- a/check > +++ b/check > @@ -79,6 +79,7 @@ testlist options > -g group[,group...] include tests from these groups > -x group[,group...] exclude tests from these groups > -X exclude_file exclude individual tests > + -e testlist exclude a specific list of tests > -E external_file exclude individual tests > [testlist] include tests matching names in testlist > > @@ -287,6 +288,11 @@ while [ $# -gt 0 ]; do > > -X) subdir_xfile=$2; shift ; > ;; > + -e) > + xfile=$2; shift ; > + echo "$xfile" | tr ', ' '\n\n' >> $tmp.xlist > + ;; > + > -E) xfile=$2; shift ; > if [ -f $xfile ]; then > sed "s/#.*$//" "$xfile" >> $tmp.xlist >
diff --git a/check b/check index c6ad1d6c..e51cbede 100755 --- a/check +++ b/check @@ -79,6 +79,7 @@ testlist options -g group[,group...] include tests from these groups -x group[,group...] exclude tests from these groups -X exclude_file exclude individual tests + -e testlist exclude a specific list of tests -E external_file exclude individual tests [testlist] include tests matching names in testlist @@ -287,6 +288,11 @@ while [ $# -gt 0 ]; do -X) subdir_xfile=$2; shift ; ;; + -e) + xfile=$2; shift ; + echo "$xfile" | tr ', ' '\n\n' >> $tmp.xlist + ;; + -E) xfile=$2; shift ; if [ -f $xfile ]; then sed "s/#.*$//" "$xfile" >> $tmp.xlist