Skip to content
Snippets Groups Projects
Commit fdba71f4 authored by David Bühler's avatar David Bühler
Browse files

[Ptests] Reverses the order in which successive FILTER directives are applied.

parent fe302dfe
No related branches found
No related tags found
No related merge requests found
......@@ -955,7 +955,7 @@ end = struct
match current.dc_filter with
| None when s="" -> { current with dc_filter = None }
| None -> { current with dc_filter = Some s }
| Some filter -> { current with dc_filter = Some (filter ^ " | " ^ s) });
| Some filter -> { current with dc_filter = Some (s ^ " | " ^ filter) });
"EXIT",
(fun ~drop:_ ~file:_ _ s current -> { current with dc_exit_code = Some s });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment