From 1668c2caac27c5c92dfeddb20271b835b36c5615 Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Wed, 13 Sep 2023 12:09:10 -0400 Subject: [PATCH] Only use memory resources that haven't been freed (#14103) Fixes #13859 Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Bradley Dice (https://github.com/bdice) - David Wendt (https://github.com/davidwendt) URL: https://github.com/rapidsai/cudf/pull/14103 --- cpp/include/cudf_test/base_fixture.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/include/cudf_test/base_fixture.hpp b/cpp/include/cudf_test/base_fixture.hpp index 05319e03003..b622d7c6b78 100644 --- a/cpp/include/cudf_test/base_fixture.hpp +++ b/cpp/include/cudf_test/base_fixture.hpp @@ -392,6 +392,7 @@ inline auto parse_cudf_test_opts(int argc, char** argv) auto adaptor = make_stream_checking_resource_adaptor( \ resource.get(), error_on_invalid_stream, check_default_stream); \ rmm::mr::set_current_device_resource(&adaptor); \ + return RUN_ALL_TESTS(); \ } \ \ return RUN_ALL_TESTS(); \