initial commit
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
project(
|
||||
'sedpp',
|
||||
'cpp',
|
||||
version: '0.1.0',
|
||||
default_options: [
|
||||
'cpp_std=c++20',
|
||||
'warning_level=3',
|
||||
'werror=false',
|
||||
],
|
||||
)
|
||||
|
||||
subdir('sed')
|
||||
|
||||
# Run the upstream GNU sed 4.10 behavioral suite against the local executable.
|
||||
# The wrapper downloads/builds GNU sed only to reuse its tests.
|
||||
gnu_sed_tests = find_program('scripts/run-gnu-sed-tests.sh')
|
||||
|
||||
test(
|
||||
'gnu-sed-4.10',
|
||||
gnu_sed_tests,
|
||||
args: [sed_exe.full_path()],
|
||||
depends: sed_exe,
|
||||
timeout: 240,
|
||||
)
|
||||
Reference in New Issue
Block a user