diff options
-rw-r--r-- | clang/utils/creduce-clang-crash.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/utils/creduce-clang-crash.py b/clang/utils/creduce-clang-crash.py index 40d3c77b466..be16211c4da 100644 --- a/clang/utils/creduce-clang-crash.py +++ b/clang/utils/creduce-clang-crash.py @@ -187,7 +187,7 @@ class Reduce(object): (pipes.quote(not_cmd), crash_flag, quote_cmd(self.get_crash_cmd())) for msg in self.expected_output: - output += 'grep %s t.log || exit 1\n' % pipes.quote(msg) + output += 'grep -F %s t.log || exit 1\n' % pipes.quote(msg) write_to_script(output, self.testfile) self.check_interestingness() |