self.skipTest('go command not found, output: %s' % output)
# Compile the simple Go program
- status, output = self.target.run('go build -o /tmp/test /tmp/test.go')
+ status, output = self.target.run('go build -o /tmp/test /tmp/test.go', 600)
msg = 'go compile failed, output: %s' % output
self.assertEqual(status, 0, msg=msg)
self.assertEqual(status, 0, msg=msg)
# Build the module
- status, output = self.target.run('cd /tmp/hello-go && go build -o hello main.go')
+ status, output = self.target.run('cd /tmp/hello-go && go build -o hello main.go', 600)
msg = 'go build failed, output: %s' % output
self.assertEqual(status, 0, msg=msg)