From fa8eaab62b5ba79903fd03b2047b66ff04807aed Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Mon, 3 Jul 2023 10:41:56 +0800 Subject: [PATCH] build: remove duplicated test this change has no impact on `build.ninja` generated by `configure.py`. as we are using a `set` for tracking the tests to be built. but it's still an improvement, as we should not add duplicated entries in a set when initializing it. there are two occurrences of `test/boost/double_decker_test`, the one which is in the club of the local cluster of collections tests - bptree, btree, radix_tree and double_decker are preserved. Signed-off-by: Kefu Chai Closes #14478 --- configure.py | 1 - 1 file changed, 1 deletion(-) diff --git a/configure.py b/configure.py index 20bc0dc304..879c55c5db 100755 --- a/configure.py +++ b/configure.py @@ -424,7 +424,6 @@ scylla_tests = set([ 'test/boost/data_listeners_test', 'test/boost/database_test', 'test/boost/dirty_memory_manager_test', - 'test/boost/double_decker_test', 'test/boost/duration_test', 'test/boost/dynamic_bitset_test', 'test/boost/enum_option_test',