You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
After #920 is merged, running tests from head fails:
[ RUN ] TrackingTest.LogOutstandingAllocations/home/rou/src/rmm/tests/mr/device/tracking_mr_tests.cpp:217: FailureExpected: (oss.str().find("Outstanding Allocations")) != (std::string::npos), actual: 18446744073709551615 vs 18446744073709551615
Steps/Code to reproduce bug
Sync to head, run cmake and ninja, invoke ./gtests/TRACKING_TEST.
Expected behavior
Tests should pass with the default configuration.
Environment details (please complete the following information):
Environment location: Bare-metal
Method of RMM install: from source
Additional context
Seems like the logging level is determined at compile time, while the test is trying to modify it at runtime. The only way to get the test to pass is to run cmake .. -DRMM_LOGGING_LEVEL=DEBUG.
The text was updated successfully, but these errors were encountered:
Describe the bug
After #920 is merged, running tests from head fails:
Steps/Code to reproduce bug
Sync to head, run cmake and ninja, invoke
./gtests/TRACKING_TEST
.Expected behavior
Tests should pass with the default configuration.
Environment details (please complete the following information):
Additional context
Seems like the logging level is determined at compile time, while the test is trying to modify it at runtime. The only way to get the test to pass is to run
cmake .. -DRMM_LOGGING_LEVEL=DEBUG
.The text was updated successfully, but these errors were encountered: