mirror of
https://github.com/latentPrion/libspinscale.git
synced 2026-08-12 23:48:22 +00:00
Move ProbeComponentThreadHarness into spinscale_probe_support (sscl::probe) so tools can link it without gtest; keep a sscl::tests compatibility shim. Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
661 B
C++
21 lines
661 B
C++
#ifndef SPINSCALE_TEST_SUPPORT_PROBE_COMPONENT_THREAD_H
|
|
#define SPINSCALE_TEST_SUPPORT_PROBE_COMPONENT_THREAD_H
|
|
|
|
/** EXPLANATION:
|
|
* Compatibility shim: probe harness lives in spinscale_probe_support under
|
|
* sscl::probe. Test code may keep including this path and using sscl::tests
|
|
* names; tools should include <probe/probeComponentThread.h> directly.
|
|
*/
|
|
|
|
#include <probe/probeComponentThread.h>
|
|
|
|
namespace sscl::tests {
|
|
|
|
using sscl::probe::defaultProbeTaskTimeout;
|
|
using sscl::probe::runNonViralNurseryOnComponentThread;
|
|
using sscl::probe::ProbeComponentThreadHarness;
|
|
|
|
} // namespace sscl::tests
|
|
|
|
#endif // SPINSCALE_TEST_SUPPORT_PROBE_COMPONENT_THREAD_H
|