Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
monperrus committed Aug 8, 2024
1 parent 9272646 commit 85fda84
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ Others papers about Nopol:

Nopol requires Java and an SMT solver installed on the machine (e.g. Z3)

Up to commit 80130c4c, Nopol required Java 8. Now it also works on Java 11, see https://github.com/SpoonLabs/nopol/pull/214
Java version:

* From 2013 to 2021, Nopol required Java 8.
* From Nov 19, 2021, Nopol works on Java 11, see https://github.com/SpoonLabs/nopol/pull/214
* From August 8 2024, Nopol works with Java 18, see https://github.com/SpoonLabs/nopol/pull/234

0) NoPol uses the `com.sun.jdi` that lives in `tools.jar`. Identify where `tools.jar` is and add the depencency in `pom.xml`

Expand Down
4 changes: 2 additions & 2 deletions nopol/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

To run the tests:

* install a JDK, and ensure that maven uses it
* install a JDK, see expected version in ../README.md, and ensure that maven uses it
* check that `z3` works well on the command line (`$ lib/z3/z3_for_linux``) (see TestUtility.java: private String solverPath = "lib/z3/z3_for_linux";)`
* first run `mvn test -DskipTests` in `../test-projects/`. This creates `../test-projects/target/test-classes` (but doesn(t run the tests since the examples are buggy)
* first run `mvn test -DskipTests` in `../test-projects/`. This creates `../test-projects/target/test-classes` (but doesn't run the tests since the examples are buggy)
* then `mvn test`

0 comments on commit 85fda84

Please sign in to comment.