diff options
| author | Dan McDonald <danmcd@mnx.io> | 2022-12-16 13:29:26 -0500 | 
|---|---|---|
| committer | Dan McDonald <danmcd@mnx.io> | 2022-12-16 13:29:26 -0500 | 
| commit | c2b15a66358531a6d0407d3678b210e752a0b606 (patch) | |
| tree | 37db6d27eafd3b8bb0ff1c25ee6c8b98070f5444 /usr/src/test/test-runner | |
| parent | 3b01c8dd53b81ad475bf8152609c8c4803a9af55 (diff) | |
| parent | f4d2cf74960df993f48d42d323f16867fc6b9bdf (diff) | |
| download | illumos-joyent-master.tar.gz | |
commit f4d2cf74960df993f48d42d323f16867fc6b9bdf
    15253 14993 broke test-runner -l option
commit fb2301db8e408458b542c1f5fa07b5b8a3a95395
    15258 libsmb: tautological-pointer-compare
commit abd30308264aa9ca2b1c71565b841fc94256d07b
    15211 smbtorture failures in smb2.delete-on-close-perms.READONLY
commit 0663b557d8c7575927b005cab08d9f19c8b98c25
    15200 libdladm: error: '&&' within '||'
commit bf7adeeaefd6f9806398f446e4b87af240a6770e
    15199 libdladm: unused label
commit 92f549282aaface1e6f92329085e28edcf24054f
    15207 libfmd_agent: memory leak in fmd_agent_nvl_ioctl
commit 7b5987898994d86cd20e00dbf8c305dfbfbb8bea
    15135 stdalign.h is very C11-y, but perhaps disrespectful of C++
Diffstat (limited to 'usr/src/test/test-runner')
| -rw-r--r-- | usr/src/test/test-runner/cmd/run | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/usr/src/test/test-runner/cmd/run b/usr/src/test/test-runner/cmd/run index 189be04d4d..ce1bf1419c 100644 --- a/usr/src/test/test-runner/cmd/run +++ b/usr/src/test/test-runner/cmd/run @@ -973,6 +973,9 @@ def filter_tests(testrun, options):              if not m:                  continue              group, test = m.group(1, 2) +            m = re.match(re.escape(options.testdir) + r'(.*)', group) +            if m: +                group = m.group(1)              try:                  failed[group].append(test)              except KeyError: | 
