Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable 'm' flag on regex for multi-line tests
This is a change to the multi-line match option to enable traditional regex multi-line matching. The m flag causes ^ and $ to actually match correctly on new line/carriage returns, where before the match was actually on the entire file so ^ was just beginning of file $ was the end. This also fixes a few tests' failure condition where this subtle difference wasn't noticed and '^warning: ignoring' is used.
- Loading branch information