1
0

Do not randomize kernels installation/test order by default

This commit is contained in:
2023-04-05 11:29:31 +00:00
parent f399390c2c
commit fc0c76f114
3 changed files with 58 additions and 51 deletions

View File

@@ -63,7 +63,7 @@ func (cmd *PackCmd) Run(g *Globals) (err error) {
log.Print(f.Name())
PewCmd{
pew := PewCmd{
Max: cmd.KernelRuns,
Runs: cmd.ExploitRuns,
Threads: cmd.Threads,
@@ -72,7 +72,9 @@ func (cmd *PackCmd) Run(g *Globals) (err error) {
QemuTimeout: cmd.QemuTimeout,
DockerTimeout: cmd.DockerTimeout,
Dist: pathDevNull,
}.Run(&Globals{
}
pew.Run(&Globals{
Config: g.Config,
WorkDir: workPath,
})