aboutsummaryrefslogtreecommitdiffstats
path: root/syz-ci
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2022-04-12 08:23:19 +0000
committerAleksandr Nogikh <wp32pw@gmail.com>2022-04-12 19:21:17 +0200
commit5071aa3b90bf56d6c452aaf4c2199fcaeef5ed34 (patch)
tree788dab73dcb2f1b9afcca4d3bdca21c48b7d68b3 /syz-ci
parentaf01ee7dda3c1b644f43230ae466b6dc7ceb97c3 (diff)
syz-ci: fix an excessive auto-replacement
In this case "test" didn't mean TestOS.
Diffstat (limited to 'syz-ci')
-rw-r--r--syz-ci/manager.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-ci/manager.go b/syz-ci/manager.go
index 066b00188..e8751d740 100644
--- a/syz-ci/manager.go
+++ b/syz-ci/manager.go
@@ -422,7 +422,7 @@ func (mgr *Manager) testImage(imageDir string, info *BuildInfo) error {
switch err := res.(type) {
case *instance.TestError:
if rep := err.Report; rep != nil {
- what := targets.TestOS
+ what := "test"
if err.Boot {
what = "boot"
}