Its mainly about Jacoco javaagent lib that i am using for coverage.I need some assistance from you regarding JVM proper termination to collect .exec
file data. I tried every way like
1) Start server from Apache GUI window and send java agent as parameter. My app.
start properly shutdown properly but .exec file still 0 byte.
2)I tried to start server from command line as console application. But some time .exec file populate and some time don't depend on time constraint. I stop my server from command line using CTRL+C .
So,please clear it like what is proper way to stop my JVM when i am using Jacoco javaagent on fly for automation test.
Thanks,
Saket
--
You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jacoco+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/3523655f-159c-4575-9f78-61b700893b06%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jacoco+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/3523655f-159c-4575-9f78-61b700893b06%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
The Java virtual machine shuts down in response to two kinds of events:
- The program exits normally, when the last non-daemon thread exits or when the exit (equivalently, System.exit) method is invoked, or
- The virtual machine is terminated in response to a user interrupt, such as typing ^C, or a system-wide event, such as user logoff or system shutdown.