package platform import "errors" // ErrTestNotApplicable is returned by a SAT routine when the host provides no // way to run that test at all (a required tool or capability is absent), as // opposed to the test running and finding a fault. The task layer maps it to a // cancelled ("not applicable") task rather than a failure, so an engineer does // not see a false red. var ErrTestNotApplicable = errors.New("test not applicable on this platform")