blob: edeb72dce99fa579ae1b593497a27aff72105ff5 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package main
import (
"context"
"math/rand"
"time"
"infra/rts/presubmit/eval"
)
func main() {
ctx := context.Background()
rand.Seed(time.Now().Unix())
eval.Main(ctx, func(ctx context.Context, in eval.Input, out *eval.Output) error {
for i := range in.TestVariants {
out.TestVariantAffectedness[i].Distance = rand.Float64()
}
return nil
})
}