blob: cb17c73fe969d331ca4a9a1f857da1eb2a922da5 [file] [log] [blame]
#include "aos/testing/path.h"
#include "absl/strings/str_cat.h"
namespace aos::testing {
// Returns the path to the provided artifact which works when built both as an
// external target and in the repo.
std::string ArtifactPath(std::string_view path) {
// TODO(austin): Don't hard-code the repo name here since it likely will
// change.
return absl::StrCat("../org_frc971/", path);
}
} // namespace aos::testing