Skip to content

Commit f0aa342

Browse files
committed
skip ASAN failed test.
1 parent db540f6 commit f0aa342

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

test/duckdb_test/connection_test.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ def test_async_query_stream_with_valid_params
108108
end
109109

110110
def test_async_query_stream_with_invalid_params
111+
skip 'test with ASAN' if ENV['ASAN_TEST'] == '1'
111112
assert_raises(DuckDB::Error) { @con.async_query_stream('foo', 'bar') }
112113

113114
assert_raises(ArgumentError) { @con.async_query_stream }

test/duckdb_test/prepared_statement_test.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,7 @@ def test_bind_varchar_date
457457
end
458458

459459
def test_bind_varchar_date_with_invalid_timestamp_string
460+
skip 'test with ASAN' if ENV['ASAN_TEST'] == '1'
460461
con = PreparedStatementTest.con
461462
stmt = DuckDB::PreparedStatement.new(con, 'SELECT * FROM a WHERE col_date = $1')
462463

0 commit comments

Comments
 (0)