refactor: rand.Seed not required anymore
This commit is contained in:
		| @@ -282,8 +282,6 @@ func (q *System) Args() (qemuArgs []string) { | ||||
|  | ||||
| // Start qemu process | ||||
| func (q *System) Start() (err error) { | ||||
| 	rand.Seed(time.Now().UnixNano()) // Are you sure? | ||||
|  | ||||
| 	q.cmd = exec.Command(q.Executable(), q.Args()...) | ||||
| 	q.Log.Debug().Msgf("%v", q.cmd) | ||||
|  | ||||
|   | ||||
| @@ -15,10 +15,6 @@ import ( | ||||
| 	"time" | ||||
| ) | ||||
|  | ||||
| func init() { | ||||
| 	rand.Seed(time.Now().UnixNano()) | ||||
| } | ||||
|  | ||||
| func TestSystemNew_InvalidKernelPath(t *testing.T) { | ||||
| 	kernel := Kernel{Name: "Invalid", KernelPath: "/invalid/path"} | ||||
| 	if _, err := NewSystem(X86x64, kernel, "/bin/sh"); err == nil { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user