Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sqlancer/sqlancer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: sqlancer/sqlancer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fix-jacoco-eof-on-timeout
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 1 file changed
  • 2 contributors

Commits on Mar 26, 2026

  1. Shut down executor threads after timeout to prevent JaCoCo EOFException

    When executeMain times out, awaitTermination returns but worker threads
    remain running (non-daemon). For remote DBs like Materialize, threads
    blocked on network I/O prevent the JVM from exiting cleanly, causing
    surefire to forcibly kill the process before JaCoCo can flush jacoco.exec,
    resulting in an EOFException during report generation.
    
    Calling shutdownNow() after the timeout interrupts threads (PostgreSQL
    JDBC socket reads respond to Thread.interrupt()), allowing them to exit
    and JaCoCo to write complete coverage data.
    
    Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
    mrigger and claude committed Mar 26, 2026
    Configuration menu
    Copy the full SHA
    9385f39 View commit details
    Browse the repository at this point in the history
Loading