2026-06-13 18:47:44 -04:00
|
|
|
#ifndef SPINSCALE_TEST_SUPPORT_PROBE_COMPONENT_THREAD_H
|
|
|
|
|
#define SPINSCALE_TEST_SUPPORT_PROBE_COMPONENT_THREAD_H
|
|
|
|
|
|
2026-07-11 22:03:19 -04:00
|
|
|
/** 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.
|
|
|
|
|
*/
|
2026-06-13 18:47:44 -04:00
|
|
|
|
2026-07-11 22:03:19 -04:00
|
|
|
#include <probe/probeComponentThread.h>
|
2026-06-13 18:47:44 -04:00
|
|
|
|
|
|
|
|
namespace sscl::tests {
|
|
|
|
|
|
2026-07-11 22:03:19 -04:00
|
|
|
using sscl::probe::defaultProbeTaskTimeout;
|
|
|
|
|
using sscl::probe::runNonViralNurseryOnComponentThread;
|
|
|
|
|
using sscl::probe::ProbeComponentThreadHarness;
|
2026-06-13 18:47:44 -04:00
|
|
|
|
|
|
|
|
} // namespace sscl::tests
|
|
|
|
|
|
|
|
|
|
#endif // SPINSCALE_TEST_SUPPORT_PROBE_COMPONENT_THREAD_H
|