Skip to content

Commit 240be16

Browse files
committed
support skip dir
1 parent bcc03de commit 240be16

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

tests/logictest/suites/query/join.test

+6
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,15 @@ select t.number from numbers(10000) as t inner join numbers(1000) as t1 on t.num
307307
statement ok
308308
drop table t
309309

310+
statement ok
311+
drop table if exists t3
312+
310313
statement ok
311314
CREATE TABLE t3(c0 BIGINT NULL, c1 DOUBLE NULL)
312315

316+
statement ok
317+
drop table if exists t4
318+
313319
statement ok
314320
CREATE TABLE t4(c0 FLOAT NULL)
315321

tests/sqllogictests/src/arg.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,24 @@ pub struct SqlLogicTestArgs {
2020
// Set specific dir to run
2121
#[arg(
2222
short = 'd',
23-
long = "dir",
23+
long = "run_dir",
2424
help = "Run sqllogictests in specific directory, the arg is optional"
2525
)]
2626
pub dir: Option<String>,
2727

2828
// Set specific test file to run
2929
#[arg(
3030
short = 'f',
31-
long = "file",
31+
long = "run_file",
3232
help = "Run sqllogictests in specific test file, the arg is optional"
3333
)]
3434
pub file: Option<String>,
35+
36+
// Set specific dir to skip
37+
#[arg(
38+
short = 's',
39+
long = "skip_dir",
40+
help = "Skip sqllogictests in specific directory, the arg is optional"
41+
)]
42+
pub skipped_dir: Option<String>,
3543
}

tests/sqllogictests/src/main.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ async fn run_suits(suits: ReadDir, databend: Databend) -> Result<()> {
163163
.unwrap()
164164
.to_str()
165165
.unwrap();
166-
dbg!(file_name);
167166
if let Some(ref specific_file) = args.file {
168167
if file_name != specific_file {
169168
continue;
@@ -185,6 +184,14 @@ fn get_files(suit: PathBuf) -> Result<Vec<walkdir::Result<DirEntry>>> {
185184
.max_depth(100)
186185
.sort_by(|a, b| a.file_name().cmp(b.file_name()))
187186
.into_iter()
187+
.filter_entry(|e| {
188+
if let Some(skipped_dir) = &args.skipped_dir {
189+
if e.file_name().to_str().unwrap() == skipped_dir {
190+
return false;
191+
}
192+
}
193+
true
194+
})
188195
.filter(|e| {
189196
if args.dir.is_none() {
190197
return true;

0 commit comments

Comments
 (0)