Files
Le Philousophe 3fd6465203 TEST: Fix memory leaks in tests using backend
Uninstall the backend after installing it.
Also start the backend to initialize date.
Don't try to initialize the CD manager.
2026-02-07 17:20:49 +01:00

13 lines
266 B
C++

#ifndef TEST_NULL_OSYSTEM
#define TEST_NULL_OSYSTEM 1
namespace Common {
#if defined(POSIX) || defined(WIN32)
void install_null_g_system();
void uninstall_null_g_system();
#define NULL_OSYSTEM_IS_AVAILABLE 1
#else
#define NULL_OSYSTEM_IS_AVAILABLE 0
#endif
}
#endif