From 3d76bc9c04b2f823003efc10fe8b72141606132f Mon Sep 17 00:00:00 2001 From: despiegk Date: Fri, 7 Feb 2025 06:40:10 +0300 Subject: [PATCH] ... --- test_basic.vsh | 1 + test_sqlite.v | 7 ------- 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 test_sqlite.v diff --git a/test_basic.vsh b/test_basic.vsh index 35f56d24..0ecd4373 100755 --- a/test_basic.vsh +++ b/test_basic.vsh @@ -85,6 +85,7 @@ fn process_test_file(path string, base_dir string, test_files_ignore []string, t // Check if any ignore pattern matches the path for pattern in test_files_ignore { + println('Check ignore test: ${pattern} -- ${rel_path} ::: ${rel_path.contains(pattern.trim_space())}') if pattern.trim_space() != '' && rel_path.contains(pattern.trim_space()) { println('Ignoring test: ${rel_path}') return diff --git a/test_sqlite.v b/test_sqlite.v deleted file mode 100644 index 9a1a89da..00000000 --- a/test_sqlite.v +++ /dev/null @@ -1,7 +0,0 @@ -import db.sqlite - -fn main() { - db := sqlite.connect(':memory:')! - println('SQLite connection successful') - db.close()! -}