filecheck icon indicating copy to clipboard operation
filecheck copied to clipboard

Library for writing tests for utilities that read text files and produce text output

Results 3 filecheck issues
Sort by recently updated
recently updated
newest added

filecheck::Error does not implement std::error::Error, which makes it unergonomic to use with modern error libraries that rely on that impl for error types. ```rust use anyhow::Result; fn f() -> Result...

Filecheck currently has some whitespace sensitivities that are inconvenient when writing tests. This issue was originally reported in https://github.com/Cretonne/cretonne/issues/54; see that issue for further discussion.

good first issue

When a filecheck pattern fails to match, it prints out a line like ``` Missed #3: (?Pv\d+) = load\.i64 v3 ``` While it's usually possible to find the pattern in...