Commit 660c3bc9 by Nicolas Capens Committed by Nicolas Capens

Regres: Reverse full test run order

Doing a test run with LLVM after the one with Subzero results in various tests timing out (including some 'UNSUPPORTED' ones). The Subzero test run doesn't exhibit this issue. It's unclear at this point why this happens, but reversing the order appears to stabilize it. Bug: b/156728197 Change-Id: I6450d2d95d6043ef206d09f0020313fbf4b3f2e2 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/45149Tested-by: 's avatarNicolas Capens <nicolascapens@google.com> Reviewed-by: 's avatarAntonio Maiorano <amaiorano@google.com> Kokoro-Result: kokoro <noreply+kokoro@google.com>
parent c9625f16
...@@ -295,10 +295,10 @@ func (r *regres) run() error { ...@@ -295,10 +295,10 @@ func (r *regres) run() error {
for { for {
if now := time.Now(); toDate(now) != lastUpdatedTestLists { if now := time.Now(); toDate(now) != lastUpdatedTestLists {
lastUpdatedTestLists = toDate(now) lastUpdatedTestLists = toDate(now)
if err := r.runDaily(client, backendSubzero, true); err != nil { if err := r.runDaily(client, backendLLVM, false); err != nil {
log.Println(err.Error()) log.Println(err.Error())
} }
if err := r.runDaily(client, backendLLVM, false); err != nil { if err := r.runDaily(client, backendSubzero, true); err != nil {
log.Println(err.Error()) log.Println(err.Error())
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment