Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 0 additions & 90 deletions .evergreen/config_generator/components/mongohouse.py

This file was deleted.

45 changes: 0 additions & 45 deletions .evergreen/generated_configs/functions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,28 +200,6 @@ functions:
local_file: rpm.tar.gz
permissions: public-read
remote_file: mongo-cxx-driver/${branch_name}/${revision}/${version_id}/${build_id}/${execution}/rpm-packages.tar.gz
build_mongohouse:
- command: ec2.assume_role
params:
role_arn: ${aws_test_secrets_role}
- command: subprocess.exec
type: setup
params:
binary: bash
include_expansions_in_env:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
- AWS_SESSION_TOKEN
args:
- -c
- |
if [ ! -d "drivers-evergreen-tools" ]; then
git clone https://github.com/mongodb-labs/drivers-evergreen-tools.git
fi
cd drivers-evergreen-tools
export DRIVERS_TOOLS=$(pwd)

.evergreen/atlas_data_lake/pull-mongohouse-image.sh
check augmented sbom:
- command: ec2.assume_role
type: setup
Expand Down Expand Up @@ -482,18 +460,6 @@ functions:
python -u kms_http_server.py --ca_file ../x509gen/ca.pem --cert_file ../x509gen/server.pem --port 9002 --require_client_cert &
python -u kms_kmip_server.py &
echo "Starting mock KMS servers... done."
run_mongohouse:
command: subprocess.exec
type: setup
params:
binary: bash
args:
- -c
- |
cd drivers-evergreen-tools
export DRIVERS_TOOLS=$(pwd)

.evergreen/atlas_data_lake/run-mongohouse-image.sh
set-cache-dir:
- command: subprocess.exec
type: setup
Expand Down Expand Up @@ -619,17 +585,6 @@ functions:
export LD_LIBRARY_PATH=$(pwd)/../mongoc/lib

./build/src/mongocxx/test/test_driver "atlas search indexes prose tests"
test_mongohouse:
command: subprocess.exec
type: test
params:
binary: bash
working_dir: mongo-cxx-driver
include_expansions_in_env:
- distro_id
args:
- -c
- .evergreen/scripts/test-mongohouse.sh
uninstall-check:
command: subprocess.exec
type: test
Expand Down
13 changes: 0 additions & 13 deletions .evergreen/generated_configs/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13877,19 +13877,6 @@ tasks:
BSONCXX_POLYFILL: impls
CXX_STANDARD: 17
- func: upload scan artifacts
- name: test_mongohouse
run_on: ubuntu2204-large
tags: [mongohouse, ubuntu2204]
commands:
- func: setup
- func: fetch_c_driver_source
- func: compile
vars:
ENABLE_TESTS: "ON"
build_type: Release
- func: build_mongohouse
- func: run_mongohouse
- func: test_mongohouse
- name: uninstall-check-macos-14-arm64-clang-debug-shared
run_on: macos-14-arm64
tags: [uninstall-check, macos-14-arm64, clang, debug, shared]
Expand Down
4 changes: 0 additions & 4 deletions .evergreen/generated_configs/variants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,6 @@ buildvariants:
display_name: macro-guards-matrix
tasks:
- name: .macro-guards
- name: mongohouse
display_name: Mongohouse
tasks:
- name: .mongohouse
- name: packaging
display_name: Linux Distro Packaging
tasks:
Expand Down
45 changes: 0 additions & 45 deletions .evergreen/scripts/test-mongohouse.sh

This file was deleted.

11 changes: 0 additions & 11 deletions src/mongocxx/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ set(mongocxx_test_sources_extra
spec/command_monitoring.cpp
spec/crud.cpp
spec/gridfs.cpp
spec/mongohouse.cpp
spec/read_write_concern.cpp
spec/retryable-reads.cpp
spec/transactions.cpp
Expand Down Expand Up @@ -164,9 +163,6 @@ target_link_libraries(test_retryable_reads_specs PRIVATE spec_test_common client
add_executable(test_read_write_concern_specs spec/read_write_concern.cpp)
target_link_libraries(test_read_write_concern_specs PRIVATE spec_test_common client_helpers)

add_executable(test_mongohouse_specs spec/mongohouse.cpp)
target_link_libraries(test_mongohouse_specs PRIVATE spec_test_common client_helpers)

add_executable(test_unified_format_specs spec/unified_tests/operations.cpp spec/unified_tests/runner.cpp)
target_link_libraries(test_unified_format_specs PRIVATE spec_test_common client_helpers)

Expand Down Expand Up @@ -207,7 +203,6 @@ set_property(
test_gridfs_specs
test_instance
test_logging
test_mongohouse_specs
test_read_write_concern_specs
test_retryable_reads_specs
test_transactions_specs
Expand Down Expand Up @@ -245,12 +240,6 @@ foreach(test_name
add_test(NAME ${test_name} COMMAND test_${test_name} --reporter compact --allow-running-no-tests)
endforeach()

# Adding this as a test will run it as part of the RUN_TESTS command in MSVC.
# Do not add, since we only test mongohouse on Linux.
if(0)
add_test(NAME mongohouse_specs COMMAND test_mongohouse_specs ${test_args})
endif()

set_property(TEST crud_specs APPEND PROPERTY ENVIRONMENT
"CRUD_LEGACY_TESTS_PATH=${DATA_SOURCE_DIR}/crud/legacy"
)
Expand Down
Loading