mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
8 lines
257 B
Sed
8 lines
257 B
Sed
|
|
/\<testcase/{
|
||
|
|
s/^.* name="\([^"]*\)" value_param="\([^"]*\)" status="\([^"]*\)" time="[^"]*" classname="\([^"]*\)".*$/\3 '\4: \1 \2'/
|
||
|
|
t end
|
||
|
|
s/^.* name="\([^"]*\)" status="\([^"]*\)" time="[^"]*" classname="\([^"]*\)".*$/\2 '\3: \1'/
|
||
|
|
t end
|
||
|
|
}
|
||
|
|
d
|
||
|
|
: end
|