Commit 37401472 by Ben Clayton

Regres: Reduce dEQP logging efforts

Nothing reads these, save the SSD R/W cycles! Change-Id: Ic49a40387672a1e5aaedb169d9d46f61daedc430 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/28353Tested-by: 's avatarBen Clayton <bclayton@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com>
parent 15f2e8c1
...@@ -1142,7 +1142,13 @@ nextTest: ...@@ -1142,7 +1142,13 @@ nextTest:
"LIBC_FATAL_STDERR_=1", // Put libc explosions into logs. "LIBC_FATAL_STDERR_=1", // Put libc explosions into logs.
} }
outRaw, err := shell.Exec(testTimeout, exe, filepath.Dir(exe), env, "--deqp-surface-type=pbuffer", "-n="+name) outRaw, err := shell.Exec(testTimeout, exe, filepath.Dir(exe), env,
"--deqp-surface-type=pbuffer",
"--deqp-shadercache=disable",
"--deqp-log-images=disable",
"--deqp-log-shader-sources=disable",
"--deqp-log-flush=disable",
"-n="+name)
out := string(outRaw) out := string(outRaw)
out = strings.ReplaceAll(out, t.srcDir, "<SwiftShader>") out = strings.ReplaceAll(out, t.srcDir, "<SwiftShader>")
out = strings.ReplaceAll(out, exe, "<dEQP>") out = strings.ReplaceAll(out, exe, "<dEQP>")
......
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