-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dgo test issues #27
Comments
Some simple library tests such as gorilla/websocket do terminate when you run
Oftentimes these test need to be grouped together to make sure other packages and imports are included so its paramount that
In order to achieve this we need a way to instrument multiple files at the same time, this can be configured using the |
I was able to run websocket.json config:
The The
and
Building a library will produce no binary so the file above only fulfills a requirement from overlord but does nothing else. When you run overlord in
This will spawn a The thread is owned the root user so you will be unable to kill the thread though |
It appears the scheduler/GoDist is unable to recognise and control the processes spawned by |
Whenever you run
dgo test
it will execute the tests but the goroutine will never terminate. I'm unable to kill the process ether.This might become important when you are testing projects that don't produce binaries.
The text was updated successfully, but these errors were encountered: