1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tests: add vlib/v/tests/failing_tests_test.v, support testdata in v test-self too

This commit is contained in:
Delyan Angelov
2021-06-02 22:13:53 +03:00
parent 0254a1ac76
commit b28def7c11
3 changed files with 42 additions and 1 deletions

View File

@@ -123,7 +123,7 @@ fn main() {
all_test_files := os.walk_ext(os.join_path(vroot, 'vlib'), '_test.v')
testing.eheader(title)
mut tsession := testing.new_test_session(cmd_prefix, true)
tsession.files << all_test_files
tsession.files << all_test_files.filter(!it.contains('testdata' + os.path_separator))
tsession.skip_files << skip_test_files
mut werror := false
mut sanitize_memory := false