-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
Milestone
Description
Describe the bug, including details regarding any error messages, version, and platform.
#14832 switched on the test suite within the conda-builds, which itself synced with conda-forge/arrow-cpp-feedstock#875
In the process of doing two tests failing with the same error were skipped,
arrow/dev/tasks/conda-recipes/arrow-cpp/meta.yaml
Lines 380 to 381 in 2c768a1
| # "Unsupported backend 'nonexistent' specified in ARROW_DEFAULT_MEMORY_POOL" | |
| {% set tests_to_skip = tests_to_skip + " or (test_memory and test_env_var)" %} # [unix] |
That error looks like:
FAILED test_memory.py::test_env_var - assert 2 == 1
+ where 2 = len(['WARNING: Logging before InitGoogleLogging() is written to STDERR', "W20221123 12:16:17.825700 443543 memory_pool.cc:113] Unsupported backend 'nonexistent' specified in ARROW_DEFAULT_MEMORY_POOL (supported backends are 'mimalloc', 'jemalloc', 'system')"])
which might indicate a missing default somewhere?
To fix this, the line quoted above should be removed, and the conda tests still pass.
Component(s)
C++, Continuous Integration, Python