Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dav1d
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xuefeng Jiang
dav1d
Commits
ea707934
Commit
ea707934
authored
Oct 14, 2018
by
Marvin Scholz
Committed by
Jean-Baptiste Kempf
Oct 30, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add option to include extra testdata tests
parent
8fbd87e5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
.gitignore
.gitignore
+1
-0
meson_options.txt
meson_options.txt
+5
-0
tests/meson.build
tests/meson.build
+5
-0
No files found.
.gitignore
View file @
ea707934
...
...
@@ -4,3 +4,4 @@
*~
tags
.DS_Store
/tests/dav1d-test-data
meson_options.txt
View file @
ea707934
...
...
@@ -20,6 +20,11 @@ option('build_tests',
value: true,
description: 'Build dav1d tests')
option('testdata_tests',
type: 'boolean',
value: false,
description: 'Run tests requiring the test data repository')
option('fuzzing_engine',
type: 'combo',
choices : ['none', 'libfuzzer', 'oss-fuzz'],
...
...
tests/meson.build
View file @
ea707934
...
...
@@ -117,3 +117,8 @@ dav1d_fuzzer_mt = executable('dav1d_fuzzer_mt',
build_by_default: true,
dependencies : [thread_dependency],
)
# Include dav1d test data repository with additional tests
if get_option('testdata_tests')
subdir('dav1d-test-data')
endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment