Validate regular expressions before reading input

This commit is contained in:
2026-07-10 18:13:27 -05:00
parent 572cbc9387
commit 5709f54081
4 changed files with 54 additions and 2 deletions
+8 -1
View File
@@ -1,7 +1,7 @@
project(
'sedpp',
'cpp',
version: '1.0.0',
version: '1.0.1',
default_options: [
'cpp_std=c++20',
'warning_level=3',
@@ -24,3 +24,10 @@ test(
depends: sed_exe,
timeout: 240,
)
test(
'pipe-regex-fallback',
find_program('scripts/test-pipe-regex-fallback.sh'),
args: [sed_exe.full_path()],
depends: sed_exe,
)