Started by timer Running as SYSTEM [EnvInject] - Loading node environment variables. Building remotely on sos-builder02-ubuntu18 (lin ubuntu18 java11) in workspace /builds/workspace/nopol [WS-CLEANUP] Deleting project workspace... [WS-CLEANUP] Deferred wipeout is used... The recommended git tool is: NONE No credentials specified Cloning the remote Git repository Cloning repository https://github.com/SpoonLabs/nopol.git > git init /builds/workspace/nopol # timeout=10 Fetching upstream changes from https://github.com/SpoonLabs/nopol.git > git --version # timeout=10 > git --version # 'git version 2.25.1' > git fetch --tags --force --progress -- https://github.com/SpoonLabs/nopol.git +refs/heads/*:refs/remotes/origin/* # timeout=10 > git config remote.origin.url https://github.com/SpoonLabs/nopol.git # timeout=10 > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10 Avoid second fetch > git rev-parse refs/remotes/origin/master^{commit} # timeout=10 Checking out Revision cda905fb0febd82b331385688e176d88a77b27b1 (refs/remotes/origin/master) > git config core.sparsecheckout # timeout=10 > git checkout -f cda905fb0febd82b331385688e176d88a77b27b1 # timeout=10 Commit message: "Bump com.google.guava:guava from 30.1-jre to 32.0.0-jre in /nopol (#236)" > git rev-list --no-walk cda905fb0febd82b331385688e176d88a77b27b1 # timeout=10 [nopol] $ /bin/sh -xe /tmp/jenkins10117195916227023435.sh + rm -rf /builds/.m2/repository/fr/inria/gforge/spoon [nopol] $ /bin/sh -xe /tmp/jenkins16365675386119125602.sh + cd test-projects + mvn test -DskipTests Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 [INFO] Scanning for projects... [INFO] [INFO] ----------------< fr.inria.lille.toolset:test-projects >---------------- [INFO] Building test-projects 0.0.1-SNAPSHOT [INFO] from pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- resources:3.3.1:resources (default-resources) @ test-projects --- [WARNING] Using platform encoding (UTF8 actually) to copy filtered resources, i.e. build is platform dependent! [INFO] skip non existing resourceDirectory /builds/workspace/nopol/test-projects/src/main/resources [INFO] [INFO] --- compiler:3.13.0:compile (default-compile) @ test-projects --- [INFO] Recompiling the module because of changed source code. [WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! [INFO] Compiling 28 source files with javac [debug target 1.7] to target/classes [WARNING] bootstrap class path not set in conjunction with -source 7 [WARNING] source value 7 is obsolete and will be removed in a future release [WARNING] target value 7 is obsolete and will be removed in a future release [WARNING] To suppress warnings about obsolete options, use -Xlint:-options. [INFO] [INFO] --- resources:3.3.1:testResources (default-testResources) @ test-projects --- [WARNING] Using platform encoding (UTF8 actually) to copy filtered resources, i.e. build is platform dependent! [INFO] skip non existing resourceDirectory /builds/workspace/nopol/test-projects/src/test/resources [INFO] [INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ test-projects --- [INFO] Recompiling the module because of changed dependency. [WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! [INFO] Compiling 28 source files with javac [debug target 1.7] to target/test-classes [WARNING] bootstrap class path not set in conjunction with -source 7 [WARNING] source value 7 is obsolete and will be removed in a future release [WARNING] target value 7 is obsolete and will be removed in a future release [WARNING] To suppress warnings about obsolete options, use -Xlint:-options. [WARNING] /builds/workspace/nopol/test-projects/src/test/java/symbolic_examples/symbolic_example_10/NopolExampleTest.java:[17,59] non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Class for a varargs call cast to java.lang.Class[] for a non-varargs call and to suppress this warning [INFO] [INFO] --- surefire:3.2.5:test (default-test) @ test-projects --- [INFO] Tests are skipped. [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 4.537 s [INFO] Finished at: 2025-01-08T10:38:28+01:00 [INFO] ------------------------------------------------------------------------ + cd ../nopol + curl https://gist.githubusercontent.com/monperrus/4bf62ca7bf369b73b01538b73d57e889/raw/inject_spoon_snapshot.py % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 2153 100 2153 0 0 10984 0 --:--:-- --:--:-- --:--:-- 11041 + python3 -c #! /bin/python3 """Script for injecting the latest SNAPSHOT version of Spoon into all pom.xml files it finds in the current working directory or any subdirectory. Requires the ``defusedxml`` package to be installed separately. This script is compatible with Python 3.5+ """ import xml.etree.ElementTree as ET import subprocess import pathlib from typing import Optional SPOON_SNAPSHOT_REPO = """ spoon-snapshot-repo Maven Repository for Spoon Snapshots https://oss.sonatype.org/content/repositories/snapshots/ """ MAVEN_NAMESPACE = "http://maven.apache.org/POM/4.0.0" NAMESPACES = {"": MAVEN_NAMESPACE} MAVEN_VERSIONS_COMMAND = "mvn -B -U versions:use-latest-versions -DallowSnapshots -Dincludes=fr.inria.gforge.spoon".split() def main(): ET.register_namespace("", MAVEN_NAMESPACE) pom_file = pathlib.Path("pom.xml") inject_snapshot_repo(pom_file) subprocess.run(MAVEN_VERSIONS_COMMAND, cwd=str(pom_file.parent)) def inject_snapshot_repo(pom_file: pathlib.Path) -> None: tree = ET.parse(str(pom_file)) root = tree.getroot() repositories = root.find(in_maven_namespace("repositories")) if not repositories: repositories = ET.fromstring("") root.append(repositories) snapshot_repo = ET.fromstring(SPOON_SNAPSHOT_REPO) snapshot_repo_url = snapshot_repo.find("url").text for repo in repositories.findall(in_maven_namespace("repository")): url = repo.find(in_maven_namespace("url")).text if url == snapshot_repo_url: return repositories.append(snapshot_repo) tree.write(str(pom_file)) def in_maven_namespace(tag: str) -> str: """Wrap the tag in the default Maven namespace. If porting this script to Python 3.6+, then this method can be removed and one can instead search with a default namespace like so: someElement.find(tag, namespaces={"": MAVEN_NAMESPACE}) This does not appear to work in Python 3.5 """ return "{{{}}}{}".format(MAVEN_NAMESPACE, tag) if __name__ == "__main__": main() Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 [INFO] Scanning for projects... [WARNING] [WARNING] Some problems were encountered while building the effective model for fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 173, column 21 [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 185, column 21 [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-resources-plugin is missing. @ line 179, column 21 [WARNING] 'repositories.repository.id' must not contain any of these characters \/:"<>|?* but found / @ line 294, column 17 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING] [WARNING] The project fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT uses prerequisites which is only intended for maven-plugin projects but not for non maven-plugin projects. For such purposes you should use the maven-enforcer-plugin. See https://maven.apache.org/enforcer/enforcer-rules/requireMavenVersion.html [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (21 kB at 34 kB/s) [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml (14 kB at 23 kB/s) [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/maven-metadata.xml [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/maven-metadata.xml (1.3 kB at 69 kB/s) [INFO] [INFO] -------------------< fr.inria.gforge.spirals:nopol >-------------------- [INFO] Building Nopol 0.2-SNAPSHOT [INFO] from pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- versions:2.18.0:use-latest-versions (default-cli) @ nopol --- [INFO] Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml [INFO] Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml [INFO] Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml [INFO] Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml [INFO] Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (12 kB at 369 kB/s) [INFO] Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (292 B at 770 B/s) [INFO] Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (292 B at 787 B/s) [INFO] Updated fr.inria.gforge.spoon:spoon-core:jar:9.1.0 to version 11.1.1-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 5.360 s [INFO] Finished at: 2025-01-08T10:38:36+01:00 [INFO] ------------------------------------------------------------------------ + mvn -U dependency:resolve Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 [INFO] Scanning for projects... [WARNING] [WARNING] Some problems were encountered while building the effective model for fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 173, column 21 [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 185, column 21 [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-resources-plugin is missing. @ line 179, column 21 [WARNING] 'repositories.repository.id' must not contain any of these characters \/:"<>|?* but found / @ line 294, column 17 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING] [WARNING] The project fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT uses prerequisites which is only intended for maven-plugin projects but not for non maven-plugin projects. For such purposes you should use the maven-enforcer-plugin. See https://maven.apache.org/enforcer/enforcer-rules/requireMavenVersion.html [INFO] [INFO] -------------------< fr.inria.gforge.spirals:nopol >-------------------- [INFO] Building Nopol 0.2-SNAPSHOT [INFO] from pom.xml [INFO] --------------------------------[ jar ]--------------------------------- Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/8.3.0-beta-8/spoon-core-8.3.0-beta-8.pom Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/8.3.0-beta-8/spoon-core-8.3.0-beta-8.pom Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/8.3.0-beta-8/spoon-core-8.3.0-beta-8.pom Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/8.3.0-beta-8/spoon-core-8.3.0-beta-8.pom Progress (1): 1.4/8.2 kB Progress (1): 2.8/8.2 kB Progress (1): 4.1/8.2 kB Progress (1): 5.5/8.2 kB Progress (1): 6.9/8.2 kB Progress (1): 8.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/8.3.0-beta-8/spoon-core-8.3.0-beta-8.pom (8.2 kB at 69 kB/s) Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-pom/1.0/spoon-pom-1.0.pom Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-pom/1.0/spoon-pom-1.0.pom Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/1.0/spoon-pom-1.0.pom Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-pom/1.0/spoon-pom-1.0.pom Progress (1): 1.4/21 kB Progress (1): 2.8/21 kB Progress (1): 4.1/21 kB Progress (1): 5.5/21 kB Progress (1): 6.9/21 kB Progress (1): 8.3/21 kB Progress (1): 9.7/21 kB Progress (1): 11/21 kB Progress (1): 12/21 kB Progress (1): 14/21 kB Progress (1): 15/21 kB Progress (1): 17/21 kB Progress (1): 18/21 kB Progress (1): 19/21 kB Progress (1): 21/21 kB Progress (1): 21 kB Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-pom/1.0/spoon-pom-1.0.pom (21 kB at 170 kB/s) Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/9.2.0-beta-1/spoon-core-9.2.0-beta-1.pom Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/9.2.0-beta-1/spoon-core-9.2.0-beta-1.pom Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/9.2.0-beta-1/spoon-core-9.2.0-beta-1.pom Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/9.2.0-beta-1/spoon-core-9.2.0-beta-1.pom Progress (1): 1.4/11 kB Progress (1): 2.8/11 kB Progress (1): 4.1/11 kB Progress (1): 5.5/11 kB Progress (1): 6.9/11 kB Progress (1): 8.3/11 kB Progress (1): 9.7/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/9.2.0-beta-1/spoon-core-9.2.0-beta-1.pom (11 kB at 307 kB/s) [WARNING] 1 problem was encountered while building the effective model for org.javassist:javassist:jar:3.16.1-GA Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/maven-metadata.xml Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/maven-metadata.xml Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/maven-metadata.xml Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/maven-metadata.xml Progress (1): 1.4 kB Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/maven-metadata.xml (1.4 kB at 14 kB/s) Progress (1): 1.4 kB Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/maven-metadata.xml (1.4 kB at 5.4 kB/s) Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-20250108.011727-1.pom Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-20250108.011727-1.pom Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-20250108.011727-1.pom Progress (1): 7.6/9.4 kB Progress (1): 9.4 kB Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-20250108.011727-1.pom (9.4 kB at 88 kB/s) Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-pom/11.1.1-SNAPSHOT/maven-metadata.xml Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-pom/11.1.1-SNAPSHOT/maven-metadata.xml Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.1.1-SNAPSHOT/maven-metadata.xml Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.1.1-SNAPSHOT/maven-metadata.xml Progress (1): 609 B Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.1.1-SNAPSHOT/maven-metadata.xml (609 B at 6.6 kB/s) Progress (1): 609 B Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.1.1-SNAPSHOT/maven-metadata.xml (609 B at 6.8 kB/s) Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.1.1-SNAPSHOT/spoon-pom-11.1.1-20250108.012248-1.pom Progress (1): 7.6/24 kB Progress (1): 16/24 kB Progress (1): 24 kB Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.1.1-SNAPSHOT/spoon-pom-11.1.1-20250108.012248-1.pom (24 kB at 131 kB/s) Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml Progress (1): 38 B Progress (1): 1.0 kB Downloaded from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml (1.0 kB at 1.9 kB/s) Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/6.2.0/spoon-core-6.2.0.pom Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/6.2.0/spoon-core-6.2.0.pom Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/6.2.0/spoon-core-6.2.0.pom Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/6.2.0/spoon-core-6.2.0.pom Progress (1): 1.4/20 kB Progress (1): 2.8/20 kB Progress (1): 4.1/20 kB Progress (1): 5.5/20 kB Progress (1): 6.9/20 kB Progress (1): 8.3/20 kB Progress (1): 9.7/20 kB Progress (1): 11/20 kB Progress (1): 12/20 kB Progress (1): 14/20 kB Progress (1): 15/20 kB Progress (1): 17/20 kB Progress (1): 18/20 kB Progress (1): 19/20 kB Progress (1): 20 kB Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/6.2.0/spoon-core-6.2.0.pom (20 kB at 479 kB/s) Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-20250108.011727-1.jar Progress (1): 0/2.0 MB Progress (1): 0/2.0 MB Progress (1): 0/2.0 MB Progress (1): 0/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 2.0/2.0 MB Progress (1): 2.0 MB Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-20250108.011727-1.jar (2.0 MB at 2.9 MB/s) [INFO] [INFO] --- dependency:3.7.0:resolve (default-cli) @ nopol --- [INFO] Can't extract module name from super-csv-2.4.0.jar: super.csv: Invalid module name: 'super' is not a Java identifier [INFO] Can't extract module name from jpf-symbc-576.jar: ExampleAbort.class found in top-level directory (unnamed package not allowed in module) [INFO] Can't extract module name from smtlib-0.9.7.1.jar: APIExample.class found in top-level directory (unnamed package not allowed in module) [INFO] Can't extract module name from fest-assert-1.4.jar: fest.assert: Invalid module name: 'assert' is not a Java identifier [INFO] [INFO] The following files have been resolved: [INFO] com.github.spoonlabs:flacoco:jar:1.0.5:compile -- module flacoco (auto) [INFO] org.junit.jupiter:junit-jupiter-api:jar:5.3.2:compile -- module org.junit.jupiter.api [auto] [INFO] org.apiguardian:apiguardian-api:jar:1.0.0:compile -- module org.apiguardian.api [auto] [INFO] org.opentest4j:opentest4j:jar:1.1.1:compile -- module org.opentest4j [auto] [INFO] org.junit.platform:junit-platform-commons:jar:1.3.2:compile -- module org.junit.platform.commons [auto] [INFO] org.junit.jupiter:junit-jupiter-engine:jar:5.3.2:compile -- module org.junit.jupiter.engine [auto] [INFO] org.junit.platform:junit-platform-engine:jar:1.3.2:compile -- module org.junit.platform.engine [auto] [INFO] org.junit.platform:junit-platform-launcher:jar:1.3.2:compile -- module org.junit.platform.launcher [auto] [INFO] org.junit.jupiter:junit-jupiter-params:jar:5.3.2:compile -- module org.junit.jupiter.params [auto] [INFO] eu.stamp-project:test-runner:jar:4.11:compile -- module test.runner (auto) [INFO] eu.stamp-project:descartes:jar:1.2.4:compile -- module descartes (auto) [INFO] org.pitest:pitest-entry:jar:1.6.7:compile -- module pitest.entry (auto) [INFO] org.pitest:pitest:jar:1.6.7:compile -- module pitest (auto) [INFO] org.jacoco:org.jacoco.core:jar:0.8.8:compile -- module org.jacoco.core [auto] [INFO] org.ow2.asm:asm:jar:9.2:compile -- module org.objectweb.asm [INFO] org.ow2.asm:asm-commons:jar:9.2:compile -- module org.objectweb.asm.commons [INFO] org.ow2.asm:asm-analysis:jar:9.2:compile -- module org.objectweb.asm.tree.analysis [INFO] org.ow2.asm:asm-tree:jar:9.2:compile -- module org.objectweb.asm.tree [INFO] org.jacoco:org.jacoco.agent:jar:runtime:0.8.8:compile -- module org.jacoco.agent.rt [auto] [INFO] org.slf4j:slf4j-log4j12:jar:1.7.25:compile -- module slf4j.log4j12 (auto) [INFO] log4j:log4j:jar:1.2.17:compile -- module log4j (auto) [INFO] org.pitest:pitest-junit5-plugin:jar:0.8:compile -- module pitest.junit5.plugin (auto) [INFO] org.apache.logging.log4j:log4j-core:jar:2.17.2:compile -- module org.apache.logging.log4j.core [auto] [INFO] org.apache.logging.log4j:log4j-api:jar:2.17.2:compile -- module org.apache.logging.log4j [INFO] org.apache.logging.log4j:log4j-jcl:jar:2.17.2:compile -- module org.apache.logging.log4j.jcl [auto] [INFO] commons-logging:commons-logging:jar:1.2:compile -- module commons.logging (auto) [INFO] info.picocli:picocli:jar:4.6.3:compile -- module info.picocli [INFO] com.google.code.gson:gson:jar:2.9.0:compile -- module com.google.gson [INFO] net.sf.supercsv:super-csv:jar:2.4.0:compile [INFO] com.github.stefanbirkner:system-lambda:jar:1.2.1:compile -- module system.lambda (auto) [INFO] org.apache.maven.surefire:maven-surefire-common:jar:3.0.0-M5:compile -- module maven.surefire.common (auto) [INFO] org.apache.maven.surefire:surefire-api:jar:3.0.0-M5:compile -- module surefire.api (auto) [INFO] org.apache.maven.surefire:surefire-logger-api:jar:3.0.0-M5:compile -- module surefire.logger.api (auto) [INFO] org.apache.maven.surefire:surefire-extensions-api:jar:3.0.0-M5:compile -- module surefire.extensions.api (auto) [INFO] org.apache.maven.surefire:surefire-booter:jar:3.0.0-M5:compile -- module surefire.booter (auto) [INFO] org.apache.maven.surefire:surefire-extensions-spi:jar:3.0.0-M5:compile -- module surefire.extensions.spi (auto) [INFO] org.apache.maven:maven-toolchain:jar:3.0-alpha-2:compile -- module maven.toolchain (auto) [INFO] org.apache.maven.shared:maven-artifact-transfer:jar:0.11.0:compile -- module maven.artifact.transfer (auto) [INFO] org.apache.maven.shared:maven-common-artifact-filters:jar:3.0.1:compile -- module maven.common.artifact.filters (auto) [INFO] org.apache.maven:maven-plugin-api:jar:3.0:compile -- module maven.plugin.api (auto) [INFO] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile -- module sisu.inject.plexus (auto) [INFO] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile -- module plexus.classworlds (auto) [INFO] org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile -- module sisu.inject.bean (auto) [INFO] org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile -- module sisu.guice (auto) [INFO] org.codehaus.plexus:plexus-java:jar:1.0.5:compile -- module org.codehaus.plexus.languages.java [INFO] com.thoughtworks.qdox:qdox:jar:2.0-M9:compile -- module com.thoughtworks.qdox [auto] [INFO] org.apache.maven.surefire:surefire-shared-utils:jar:3.0.0-M4:compile -- module surefire.shared.utils (auto) [INFO] junit:junit:jar:4.13.2:compile -- module junit [auto] [INFO] org.reflections:reflections:jar:0.9.9-RC1:compile -- module reflections (auto) [INFO] org.javassist:javassist:jar:3.16.1-GA:compile -- module javassist (auto) [INFO] dom4j:dom4j:jar:1.6.1:compile -- module dom4j (auto) [INFO] xml-apis:xml-apis:jar:1.0.b2:compile -- module xml.apis (auto) [INFO] com.google.guava:guava:jar:32.0.0-jre:compile -- module com.google.common [auto] [INFO] com.google.guava:failureaccess:jar:1.0.1:compile -- module failureaccess (auto) [INFO] com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile -- module listenablefuture (auto) [INFO] org.checkerframework:checker-qual:jar:3.33.0:compile -- module org.checkerframework.checker.qual [auto] [INFO] com.google.errorprone:error_prone_annotations:jar:2.18.0:compile -- module com.google.errorprone.annotations [auto] [INFO] com.google.j2objc:j2objc-annotations:jar:2.8:compile -- module j2objc.annotations (auto) [INFO] ch.qos.logback:logback-classic:jar:1.2.13:runtime -- module logback.classic (auto) [INFO] ch.qos.logback:logback-core:jar:1.2.13:runtime -- module logback.core (auto) [INFO] org.slf4j:slf4j-api:jar:1.7.5:compile -- module slf4j.api (auto) [INFO] com.google.code.findbugs:jsr305:jar:2.0.1:compile -- module jsr305 (auto) [INFO] org.hamcrest:hamcrest-core:jar:1.3:compile -- module hamcrest.core (auto) [INFO] gov.nasa.jpf:jpf:jar:1154:provided (optional) -- module jpf (auto) [INFO] gov.nasa.jpf:jpf-symbc:jar:576:provided (optional) [INFO] com.microsoft.z3:z3:jar:0.0.1:compile -- module z3 (auto) [INFO] fr.inria.gforge.spoon:spoon-core:jar:11.1.1-SNAPSHOT:compile -- module spoon.core (auto) [INFO] org.eclipse.jdt:org.eclipse.jdt.core:jar:3.39.0:compile -- module org.eclipse.jdt.core [auto] [INFO] org.eclipse.jdt:ecj:jar:3.39.0:compile -- module org.eclipse.jdt.core.compiler.batch [auto] [INFO] com.martiansoftware:jsap:jar:2.1:compile -- module jsap (auto) [INFO] commons-io:commons-io:jar:2.18.0:compile -- module org.apache.commons.io [INFO] org.apache.maven:maven-model:jar:3.6.0:compile -- module maven.model (auto) [INFO] org.codehaus.plexus:plexus-utils:jar:3.1.0:compile -- module plexus.utils (auto) [INFO] org.apache.commons:commons-lang3:jar:3.17.0:compile -- module org.apache.commons.lang3 [INFO] com.fasterxml.jackson.core:jackson-databind:jar:2.18.2:compile -- module com.fasterxml.jackson.databind [INFO] com.fasterxml.jackson.core:jackson-annotations:jar:2.18.2:compile -- module com.fasterxml.jackson.annotation [INFO] com.fasterxml.jackson.core:jackson-core:jar:2.18.2:compile -- module com.fasterxml.jackson.core [INFO] org.apache.commons:commons-compress:jar:1.27.1:compile -- module org.apache.commons.compress [INFO] commons-codec:commons-codec:jar:1.17.1:compile -- module org.apache.commons.codec [INFO] org.jspecify:jspecify:jar:1.0.0:compile -- module org.jspecify [INFO] org.apache.maven.shared:maven-invoker:jar:3.3.0:compile -- module maven.invoker (auto) [INFO] org.apache.maven.shared:maven-shared-utils:jar:3.4.2:compile -- module maven.shared.utils (auto) [INFO] javax.inject:javax.inject:jar:1:compile -- module javax.inject (auto) [INFO] org.smtlib:smtlib:jar:0.9.7.1:compile [INFO] com.gzoltar:gzoltar:jar:0.1.1:compile -- module gzoltar (auto) [INFO] commons-cli:commons-cli:jar:1.3:compile -- module commons.cli (auto) [INFO] fil.iagl.cocospoon:CocoSpoon:jar:1.0.0-SNAPSHOT:compile -- module CocoSpoon (auto) [INFO] org.easytesting:fest-assert:jar:1.4:compile [INFO] org.easytesting:fest-util:jar:1.1.6:compile -- module fest.util (auto) [INFO] com.cloudbees:diff4j:jar:1.2:compile -- module diff4j (auto) [INFO] org.jvnet.localizer:localizer:jar:1.12:compile -- module localizer (auto) [INFO] org.json:json:jar:20231013:compile -- module org.json [auto] [INFO] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 10.395 s [INFO] Finished at: 2025-01-08T10:38:50+01:00 [INFO] ------------------------------------------------------------------------ + export GITHUB_HEAD_REF=true + mvn package Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 [INFO] Scanning for projects... [WARNING] [WARNING] Some problems were encountered while building the effective model for fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 173, column 21 [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 185, column 21 [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-resources-plugin is missing. @ line 179, column 21 [WARNING] 'repositories.repository.id' must not contain any of these characters \/:"<>|?* but found / @ line 294, column 17 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING] [WARNING] The project fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT uses prerequisites which is only intended for maven-plugin projects but not for non maven-plugin projects. For such purposes you should use the maven-enforcer-plugin. See https://maven.apache.org/enforcer/enforcer-rules/requireMavenVersion.html [INFO] [INFO] -------------------< fr.inria.gforge.spirals:nopol >-------------------- [INFO] Building Nopol 0.2-SNAPSHOT [INFO] from pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [WARNING] 1 problem was encountered while building the effective model for org.javassist:javassist:jar:3.16.1-GA [INFO] [INFO] --- jacoco:0.8.7:prepare-agent (default) @ nopol --- [INFO] argLine set to -javaagent:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.7/org.jacoco.agent-0.8.7-runtime.jar=destfile=/builds/workspace/nopol/nopol/target/jacoco.exec [INFO] [INFO] --- resources:3.3.1:resources (default-resources) @ nopol --- [INFO] Copying 4 resources from src/main/resources to target/classes [INFO] [INFO] --- compiler:3.13.0:compile (default-compile) @ nopol --- [INFO] Recompiling the module because of changed source code. [INFO] Compiling 297 source files with javac [debug target 1.8] to target/classes [WARNING] bootstrap class path not set in conjunction with -source 8 [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[5,46] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[5,46] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[5,46] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[36,23] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[41,23] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[46,23] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[51,23] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[56,23] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[61,23] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[66,23] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[71,23] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[76,23] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[81,23] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[86,23] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/SpoonPredicate.java:[34,157] VOID in spoon.reflect.factory.TypeFactory has been deprecated and marked for removal [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/AssertReplacer.java:[102,50] STRING in spoon.reflect.factory.TypeFactory has been deprecated and marked for removal [WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/AssertReplacer.java:[357,72] STRING in spoon.reflect.factory.TypeFactory has been deprecated and marked for removal [INFO] /builds/workspace/nopol/nopol/src/main/java/xxl/java/library/ClassLibrary.java: Some input files use or override a deprecated API. [INFO] /builds/workspace/nopol/nopol/src/main/java/xxl/java/library/ClassLibrary.java: Recompile with -Xlint:deprecation for details. [INFO] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/CollectableValueFinder.java: Some input files use unchecked or unsafe operations. [INFO] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/CollectableValueFinder.java: Recompile with -Xlint:unchecked for details. [INFO] [INFO] --- resources:3.3.1:testResources (default-testResources) @ nopol --- [INFO] Copying 18 resources from src/test/resources to target/test-classes [INFO] [INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ nopol --- [INFO] Recompiling the module because of changed dependency. [INFO] Compiling 50 source files with javac [debug target 1.8] to target/test-classes [WARNING] bootstrap class path not set in conjunction with -source 8 [INFO] /builds/workspace/nopol/nopol/src/test/java/fr/inria/lille/repair/nopol/Defects4jUtils.java: Some input files use or override a deprecated API. [INFO] /builds/workspace/nopol/nopol/src/test/java/fr/inria/lille/repair/nopol/Defects4jUtils.java: Recompile with -Xlint:deprecation for details. [INFO] /builds/workspace/nopol/nopol/src/test/java/fr/inria/lille/commons/trace/ValuesCollectorTest.java: Some input files use unchecked or unsafe operations. [INFO] /builds/workspace/nopol/nopol/src/test/java/fr/inria/lille/commons/trace/ValuesCollectorTest.java: Recompile with -Xlint:unchecked for details. [INFO] [INFO] --- surefire:2.14.1:test (default-test) @ nopol --- [INFO] Surefire report directory: /builds/workspace/nopol/nopol/target/surefire-reports ------------------------------------------------------- T E S T S ------------------------------------------------------- Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 Running xxl.java.support.RangeMapperTest Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.222 sec Running xxl.java.junit.TestSuiteExecutionTest Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.265 sec Running xxl.java.compiler.DynamicClassCompilerTest SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/builds/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/builds/.m2/repository/ch/qos/logback/logback-classic/1.2.13/logback-classic-1.2.13.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory] [0] ERROR DynamicClassCompiler - [Compilation errors] Mathematician.java:1: error: cannot find symbol package test.dynamic.math;import test.dynamic.math.Calculator;public class Mathematician { private Calculator calculator; public Mathematician(Calculator calculator) { this.calculator = calculator; } public int sum(int a, int b) { return calculator.sum(a, b); } public int multiply(int a, int b) { return calculator.multiply(a, b); }} ^ symbol: method multiply(int,int) location: variable calculator of type test.dynamic.math.Calculator Tests run: 19, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 9.769 sec Running xxl.java.library.ObjectLibraryTest Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec Running xxl.java.library.JavaLibraryTest Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec Running xxl.java.library.StringLibraryTest Tests run: 19, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.103 sec Running xxl.java.library.NumberLibraryTest Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec Running xxl.java.library.ClassLibraryTest Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec Running xxl.container.classic.map.MultimapTest Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec Running xxl.container.classic.map.DoubleMapTest Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec Running xxl.container.classic.MetaSetTest Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec Running xxl.container.classic.MetaListTest Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec Running xxl.container.classic.MetaMapTest Tests run: 23, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.042 sec Running xxl.container.classic.MetaCollectionTest Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec Running xxl.container.various.BagTest Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec Running xxl.container.various.PairTest Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 sec Running xxl.container.various.MappingBagTest Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec Running xxl.container.various.TableTest Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec Running fr.inria.lille.localization.DumbLocalizerTest [4220] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_3] [4226] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [4226] INFO NoPol - Statement type: CONDITIONAL [4226] INFO NoPol - Args: [nopol_examples.nopol_example_3.NopolExampleTest] [4227] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_3], projectClasspath='[Ljava.net.URL;@6684f7f2', projectTests=[nopol_examples.nopol_example_3.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [4230] INFO NoPol - Available processors (cores): 1 [4242] INFO NoPol - Free memory: 1 GB [4245] INFO NoPol - Maximum memory: 1 GB [4245] INFO NoPol - Total memory available to JVM: 1 GB [4250] INFO NoPol - Java version: null [4254] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [4255] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [5566] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_2] [5566] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [5568] INFO NoPol - Statement type: CONDITIONAL [5568] INFO NoPol - Args: [nopol_examples.nopol_example_2.NopolExampleTest] [5569] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_2], projectClasspath='[Ljava.net.URL;@6c5ae8fd', projectTests=[nopol_examples.nopol_example_2.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [5573] INFO NoPol - Available processors (cores): 1 [5574] INFO NoPol - Free memory: 1 GB [5575] INFO NoPol - Maximum memory: 1 GB [5576] INFO NoPol - Total memory available to JVM: 1 GB [5576] INFO NoPol - Java version: null [5576] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [5577] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 1.39 sec <<< FAILURE! testDumbLocalizerWithPatch3(fr.inria.lille.localization.DumbLocalizerTest) Time elapsed: 1.332 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.localization.DumbLocalizerTest.testDumbLocalizerWithPatch3(DumbLocalizerTest.java:62) testDumbLocalizer(fr.inria.lille.localization.DumbLocalizerTest) Time elapsed: 0.016 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.localization.DumbFaultLocalizerImpl.getTestListPerStatement(DumbFaultLocalizerImpl.java:35) at fr.inria.lille.localization.DumbLocalizerTest.testDumbLocalizer(DumbLocalizerTest.java:39) testDumbLocalizerWithPatch(fr.inria.lille.localization.DumbLocalizerTest) Time elapsed: 0.03 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.localization.DumbLocalizerTest.testDumbLocalizerWithPatch(DumbLocalizerTest.java:51) Running fr.inria.lille.localization.FlacocoLocalizerTest Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=COND_THEN_PRE, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_1/NopolExample.java], projectClasspath='[Ljava.net.URL;@2833c093', projectTests=[nopol_examples.nopol_example_1.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 Parsing --path-options-file /tmp/test_runner6540677878069699431.options Parsing --sourceBinaries /builds/workspace/nopol/nopol/./target/classes --testBinaries /builds/workspace/nopol/nopol/./target/test-classes --class nopol_examples.nopol_example_1.NopolExampleTest --tests nopol_examples.nopol_example_1.NopolExampleTest#test9:nopol_examples.nopol_example_1.NopolExampleTest#test8:nopol_examples.nopol_example_1.NopolExampleTest#test7:nopol_examples.nopol_example_1.NopolExampleTest#test6:nopol_examples.nopol_example_1.NopolExampleTest#test5:nopol_examples.nopol_example_1.NopolExampleTest#test4:nopol_examples.nopol_example_1.NopolExampleTest#test3:nopol_examples.nopol_example_1.NopolExampleTest#test2:nopol_examples.nopol_example_1.NopolExampleTest#test1 --coverage-detail DETAIL_COMPRESSED --nb-failing-load-class 0 Some test(s) failed during computation of coverage: nopol_examples.nopol_example_1.NopolExampleTest#test5(nopol_examples.nopol_example_1.NopolExampleTest): String index out of range: -5 nopol_examples.nopol_example_1.NopolExampleTest#test6(nopol_examples.nopol_example_1.NopolExampleTest): String index out of range: -1 File saved to the following path: /builds/workspace/nopol/nopol/target/CoveredTestResultPerTest.dat [9337] INFO CoverageRunner - Tests found: 9 [9342] INFO CoverageRunner - Tests executed: 9 StatementSourceLocation{suspiciousness=0.5345224838248488, location=SourceLocation nopol_examples.nopol_example_1.NopolExample:16} StatementSourceLocation{suspiciousness=0.5, location=SourceLocation nopol_examples.nopol_example_1.NopolExample:15} StatementSourceLocation{suspiciousness=0.47140452079103173, location=SourceLocation nopol_examples.nopol_example_1.NopolExample:27} StatementSourceLocation{suspiciousness=0.47140452079103173, location=SourceLocation nopol_examples.nopol_example_1.NopolExample:25} StatementSourceLocation{suspiciousness=0.47140452079103173, location=SourceLocation nopol_examples.nopol_example_1.NopolExample:24} StatementSourceLocation{suspiciousness=0.47140452079103173, location=SourceLocation nopol_examples.nopol_example_1.NopolExample:23} StatementSourceLocation{suspiciousness=0.47140452079103173, location=SourceLocation nopol_examples.nopol_example_1.NopolExample:21} StatementSourceLocation{suspiciousness=0.47140452079103173, location=SourceLocation nopol_examples.nopol_example_1.NopolExample:12} StatementSourceLocation{suspiciousness=0.0, location=SourceLocation nopol_examples.nopol_example_1.NopolExample:18} StatementSourceLocation{suspiciousness=0.0, location=SourceLocation nopol_examples.nopol_example_1.NopolExample:13} Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.775 sec Running fr.inria.lille.localization.CocospoonLocalizerTest Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 0.036 sec <<< FAILURE! testOchiaiCoCoSpoonLocalizer(fr.inria.lille.localization.CocospoonLocalizerTest) Time elapsed: 0.02 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.localization.CocoSpoonBasedSpectrumBasedFaultLocalizer.(CocoSpoonBasedSpectrumBasedFaultLocalizer.java:34) at fr.inria.lille.localization.CocospoonLocalizerTest.testOchiaiCoCoSpoonLocalizer(CocospoonLocalizerTest.java:33) test2(fr.inria.lille.localization.CocospoonLocalizerTest) Time elapsed: 0.011 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.localization.CocoSpoonBasedSpectrumBasedFaultLocalizer.(CocoSpoonBasedSpectrumBasedFaultLocalizer.java:34) at fr.inria.lille.localization.CocoSpoonBasedSpectrumBasedFaultLocalizer.(CocoSpoonBasedSpectrumBasedFaultLocalizer.java:31) at fr.inria.lille.localization.CocospoonLocalizerTest.test2(CocospoonLocalizerTest.java:83) Running fr.inria.lille.repair.symbolic.SymbolicTest Tests run: 1, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0.001 sec Running fr.inria.lille.repair.infinitel.loop.implant.LoopStatisticsTest Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec Running fr.inria.lille.repair.infinitel.InfinitelTest Tests run: 13, Failures: 0, Errors: 9, Skipped: 3, Time elapsed: 0.35 sec <<< FAILURE! numberOfBreaksInExample3(fr.inria.lille.repair.infinitel.InfinitelTest) Time elapsed: 0.02 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.infinitel.loop.implant.ProjectMonitorImplanter.implanted(ProjectMonitorImplanter.java:21) at fr.inria.lille.repair.infinitel.Infinitel.newTestExecutor(Infinitel.java:53) at fr.inria.lille.repair.infinitel.InfinitelTest.numberOfBreaksInExample3(InfinitelTest.java:124) nestedLoopIsNotInfiniteInExample3(fr.inria.lille.repair.infinitel.InfinitelTest) Time elapsed: 0.014 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.infinitel.loop.implant.ProjectMonitorImplanter.implanted(ProjectMonitorImplanter.java:21) at fr.inria.lille.repair.infinitel.Infinitel.newTestExecutor(Infinitel.java:53) at fr.inria.lille.repair.infinitel.InfinitelTest.nestedLoopIsNotInfiniteInExample3(InfinitelTest.java:73) theBreakMustBeForTheWhile(fr.inria.lille.repair.infinitel.InfinitelTest) Time elapsed: 0.011 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.infinitel.loop.implant.ProjectMonitorImplanter.implanted(ProjectMonitorImplanter.java:21) at fr.inria.lille.repair.infinitel.Infinitel.newTestExecutor(Infinitel.java:53) at fr.inria.lille.repair.infinitel.InfinitelTest.theBreakMustBeForTheWhile(InfinitelTest.java:98) bookkeepingInLoopsOfExample3(fr.inria.lille.repair.infinitel.InfinitelTest) Time elapsed: 0.011 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.infinitel.loop.implant.ProjectMonitorImplanter.implanted(ProjectMonitorImplanter.java:21) at fr.inria.lille.repair.infinitel.Infinitel.newTestExecutor(Infinitel.java:53) at fr.inria.lille.repair.infinitel.InfinitelTest.bookkeepingInLoopsOfExample3(InfinitelTest.java:137) theReturnMustBeForTheWhile(fr.inria.lille.repair.infinitel.InfinitelTest) Time elapsed: 0.012 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.infinitel.loop.implant.ProjectMonitorImplanter.implanted(ProjectMonitorImplanter.java:21) at fr.inria.lille.repair.infinitel.Infinitel.newTestExecutor(Infinitel.java:53) at fr.inria.lille.repair.infinitel.InfinitelTest.theReturnMustBeForTheWhile(InfinitelTest.java:111) infinitelExample2(fr.inria.lille.repair.infinitel.InfinitelTest) Time elapsed: 0.011 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.infinitel.loop.implant.ProjectMonitorImplanter.implanted(ProjectMonitorImplanter.java:21) at fr.inria.lille.repair.infinitel.Infinitel.newTestExecutor(Infinitel.java:53) at fr.inria.lille.repair.infinitel.InfinitelTest.infiniteLoopFixerForExample(InfinitelTest.java:270) at fr.inria.lille.repair.infinitel.InfinitelTest.checkInfinitel(InfinitelTest.java:233) at fr.inria.lille.repair.infinitel.InfinitelTest.infinitelExample2(InfinitelTest.java:208) infinitelExample4(fr.inria.lille.repair.infinitel.InfinitelTest) Time elapsed: 0.013 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.infinitel.loop.implant.ProjectMonitorImplanter.implanted(ProjectMonitorImplanter.java:21) at fr.inria.lille.repair.infinitel.Infinitel.newTestExecutor(Infinitel.java:53) at fr.inria.lille.repair.infinitel.InfinitelTest.infiniteLoopFixerForExample(InfinitelTest.java:270) at fr.inria.lille.repair.infinitel.InfinitelTest.infinitelExample4(InfinitelTest.java:166) infinitelExample5(fr.inria.lille.repair.infinitel.InfinitelTest) Time elapsed: 0.012 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.infinitel.loop.implant.ProjectMonitorImplanter.implanted(ProjectMonitorImplanter.java:21) at fr.inria.lille.repair.infinitel.Infinitel.newTestExecutor(Infinitel.java:53) at fr.inria.lille.repair.infinitel.InfinitelTest.infiniteLoopFixerForExample(InfinitelTest.java:270) at fr.inria.lille.repair.infinitel.InfinitelTest.checkInfinitel(InfinitelTest.java:233) at fr.inria.lille.repair.infinitel.InfinitelTest.infinitelExample5(InfinitelTest.java:223) numberOfReturnsInExample1(fr.inria.lille.repair.infinitel.InfinitelTest) Time elapsed: 0.009 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.infinitel.loop.implant.ProjectMonitorImplanter.implanted(ProjectMonitorImplanter.java:21) at fr.inria.lille.repair.infinitel.Infinitel.newTestExecutor(Infinitel.java:53) at fr.inria.lille.repair.infinitel.InfinitelTest.numberOfReturnsInExample1(InfinitelTest.java:85) Running fr.inria.lille.repair.synthesis.SynthesizerOnRealBugTest Tests run: 1, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0.001 sec Running fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest java -cp /builds/workspace/nopol/nopol/../test-projects/target/test-classes:/builds/workspace/nopol/nopol/../test-projects/target/classes:/builds/workspace/nopol/nopol/lib/junit-4.11.jar:/builds/workspace/nopol/nopol/target/test-classes:/builds/workspace/nopol/nopol/target/classes:/builds/.m2/repository/com/github/spoonlabs/flacoco/1.0.5/flacoco-1.0.5.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar:/builds/.m2/repository/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar:/builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar:/builds/.m2/repository/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.jar:/builds/.m2/repository/eu/stamp-project/test-runner/4.11/test-runner-4.11.jar:/builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar:/builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar:/builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar:/builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.8/org.jacoco.core-0.8.8.jar:/builds/.m2/repository/org/ow2/asm/asm/9.2/asm-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.8/org.jacoco.agent-0.8.8-runtime.jar:/builds/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/builds/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-core/2.17.2/log4j-core-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-jcl/2.17.2/log4j-jcl-2.17.2.jar:/builds/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/builds/.m2/repository/info/picocli/picocli/4.6.3/picocli-4.6.3.jar:/builds/.m2/repository/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar:/builds/.m2/repository/net/sf/supercsv/super-csv/2.4.0/super-csv-2.4.0.jar:/builds/.m2/repository/com/github/stefanbirkner/system-lambda/1.2.1/system-lambda-1.2.1.jar:/builds/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.jar:/builds/.m2/repository/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar:/builds/.m2/repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.jar:/builds/.m2/repository/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.jar:/builds/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/builds/.m2/repository/org/reflections/reflections/0.9.9-RC1/reflections-0.9.9-RC1.jar:/builds/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/builds/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/builds/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar:/builds/.m2/repository/com/google/guava/guava/32.0.0-jre/guava-32.0.0-jre.jar:/builds/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/builds/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/builds/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar:/builds/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar:/builds/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar:/builds/.m2/repository/ch/qos/logback/logback-classic/1.2.13/logback-classic-1.2.13.jar:/builds/.m2/repository/ch/qos/logback/logback-core/1.2.13/logback-core-1.2.13.jar:/builds/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar:/builds/.m2/repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/gov/nasa/jpf/jpf/1154/jpf-1154.jar:/builds/.m2/repository/gov/nasa/jpf/jpf-symbc/576/jpf-symbc-576.jar:/builds/.m2/repository/com/microsoft/z3/z3/0.0.1/z3-0.0.1.jar:/builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-SNAPSHOT.jar:/builds/.m2/repository/org/eclipse/jdt/org.eclipse.jdt.core/3.39.0/org.eclipse.jdt.core-3.39.0.jar:/builds/.m2/repository/org/eclipse/jdt/ecj/3.39.0/ecj-3.39.0.jar:/builds/.m2/repository/com/martiansoftware/jsap/2.1/jsap-2.1.jar:/builds/.m2/repository/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar:/builds/.m2/repository/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar:/builds/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar:/builds/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar:/builds/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar:/builds/.m2/repository/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar:/builds/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/builds/.m2/repository/org/smtlib/smtlib/0.9.7.1/smtlib-0.9.7.1.jar:/builds/.m2/repository/com/gzoltar/gzoltar/0.1.1/gzoltar-0.1.1.jar:/builds/.m2/repository/commons-cli/commons-cli/1.3/commons-cli-1.3.jar:/builds/.m2/repository/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/CocoSpoon-1.0.0-SNAPSHOT.jar:/builds/.m2/repository/org/easytesting/fest-assert/1.4/fest-assert-1.4.jar:/builds/.m2/repository/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.jar:/builds/.m2/repository/com/cloudbees/diff4j/1.2/diff4j-1.2.jar:/builds/.m2/repository/org/jvnet/localizer/localizer/1.12/localizer-1.12.jar:/builds/.m2/repository/org/json/json/20231013/json-20231013.jar: fr.inria.lille.repair.MethodTestRunner nopol_examples.nopol_example_12.NopolExampleTest#test_4 nopol_examples.nopol_example_12.NopolExampleTest#test_3 nopol_examples.nopol_example_12.NopolExampleTest#test_2 nopol_examples.nopol_example_12.NopolExampleTest#test_1 [10610] WARN DynamothCodeGenesisImpl - Unable to spoon the project java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.initSpoon(DynamothCodeGenesisImpl.java:337) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processClassPrepareEvent(DynamothCodeGenesisImpl.java:202) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:176) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test12(DynamothCodeGenesisTest.java:178) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) [10632] INFO DynamothCodeGenesisImpl - [test] nopol_examples.nopol_example_12.NopolExampleTest#test_4 iteration 0 java.lang.NullPointerException: Cannot invoke "fr.inria.lille.repair.synthesis.collect.SpoonElementsCollector.collect(com.sun.jdi.ThreadReference)" because "this.spoonElementsCollector" is null at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processBreakPointEvents(DynamothCodeGenesisImpl.java:281) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:179) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test12(DynamothCodeGenesisTest.java:178) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) java -cp /builds/workspace/nopol/nopol/../test-projects/target/test-classes:/builds/workspace/nopol/nopol/../test-projects/target/classes:/builds/workspace/nopol/nopol/lib/junit-4.11.jar:/builds/workspace/nopol/nopol/target/test-classes:/builds/workspace/nopol/nopol/target/classes:/builds/.m2/repository/com/github/spoonlabs/flacoco/1.0.5/flacoco-1.0.5.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar:/builds/.m2/repository/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar:/builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar:/builds/.m2/repository/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.jar:/builds/.m2/repository/eu/stamp-project/test-runner/4.11/test-runner-4.11.jar:/builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar:/builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar:/builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar:/builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.8/org.jacoco.core-0.8.8.jar:/builds/.m2/repository/org/ow2/asm/asm/9.2/asm-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.8/org.jacoco.agent-0.8.8-runtime.jar:/builds/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/builds/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-core/2.17.2/log4j-core-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-jcl/2.17.2/log4j-jcl-2.17.2.jar:/builds/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/builds/.m2/repository/info/picocli/picocli/4.6.3/picocli-4.6.3.jar:/builds/.m2/repository/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar:/builds/.m2/repository/net/sf/supercsv/super-csv/2.4.0/super-csv-2.4.0.jar:/builds/.m2/repository/com/github/stefanbirkner/system-lambda/1.2.1/system-lambda-1.2.1.jar:/builds/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.jar:/builds/.m2/repository/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar:/builds/.m2/repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.jar:/builds/.m2/repository/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.jar:/builds/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/builds/.m2/repository/org/reflections/reflections/0.9.9-RC1/reflections-0.9.9-RC1.jar:/builds/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/builds/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/builds/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar:/builds/.m2/repository/com/google/guava/guava/32.0.0-jre/guava-32.0.0-jre.jar:/builds/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/builds/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/builds/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar:/builds/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar:/builds/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar:/builds/.m2/repository/ch/qos/logback/logback-classic/1.2.13/logback-classic-1.2.13.jar:/builds/.m2/repository/ch/qos/logback/logback-core/1.2.13/logback-core-1.2.13.jar:/builds/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar:/builds/.m2/repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/gov/nasa/jpf/jpf/1154/jpf-1154.jar:/builds/.m2/repository/gov/nasa/jpf/jpf-symbc/576/jpf-symbc-576.jar:/builds/.m2/repository/com/microsoft/z3/z3/0.0.1/z3-0.0.1.jar:/builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-SNAPSHOT.jar:/builds/.m2/repository/org/eclipse/jdt/org.eclipse.jdt.core/3.39.0/org.eclipse.jdt.core-3.39.0.jar:/builds/.m2/repository/org/eclipse/jdt/ecj/3.39.0/ecj-3.39.0.jar:/builds/.m2/repository/com/martiansoftware/jsap/2.1/jsap-2.1.jar:/builds/.m2/repository/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar:/builds/.m2/repository/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar:/builds/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar:/builds/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar:/builds/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar:/builds/.m2/repository/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar:/builds/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/builds/.m2/repository/org/smtlib/smtlib/0.9.7.1/smtlib-0.9.7.1.jar:/builds/.m2/repository/com/gzoltar/gzoltar/0.1.1/gzoltar-0.1.1.jar:/builds/.m2/repository/commons-cli/commons-cli/1.3/commons-cli-1.3.jar:/builds/.m2/repository/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/CocoSpoon-1.0.0-SNAPSHOT.jar:/builds/.m2/repository/org/easytesting/fest-assert/1.4/fest-assert-1.4.jar:/builds/.m2/repository/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.jar:/builds/.m2/repository/com/cloudbees/diff4j/1.2/diff4j-1.2.jar:/builds/.m2/repository/org/jvnet/localizer/localizer/1.12/localizer-1.12.jar:/builds/.m2/repository/org/json/json/20231013/json-20231013.jar: fr.inria.lille.repair.MethodTestRunner nopol_examples.nopol_example_13.NopolExampleTest#test_3 nopol_examples.nopol_example_13.NopolExampleTest#test_2 nopol_examples.nopol_example_13.NopolExampleTest#test_1 [11277] WARN DynamothCodeGenesisImpl - Unable to spoon the project java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.initSpoon(DynamothCodeGenesisImpl.java:337) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processClassPrepareEvent(DynamothCodeGenesisImpl.java:202) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:176) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test13(DynamothCodeGenesisTest.java:209) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) [11281] INFO DynamothCodeGenesisImpl - [test] nopol_examples.nopol_example_13.NopolExampleTest#test_3 iteration 0 java.lang.NullPointerException: Cannot invoke "fr.inria.lille.repair.synthesis.collect.SpoonElementsCollector.collect(com.sun.jdi.ThreadReference)" because "this.spoonElementsCollector" is null at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processBreakPointEvents(DynamothCodeGenesisImpl.java:281) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:179) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test13(DynamothCodeGenesisTest.java:209) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) java -cp /builds/workspace/nopol/nopol/../test-projects/target/test-classes:/builds/workspace/nopol/nopol/../test-projects/target/classes:/builds/workspace/nopol/nopol/lib/junit-4.11.jar:/builds/workspace/nopol/nopol/target/test-classes:/builds/workspace/nopol/nopol/target/classes:/builds/.m2/repository/com/github/spoonlabs/flacoco/1.0.5/flacoco-1.0.5.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar:/builds/.m2/repository/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar:/builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar:/builds/.m2/repository/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.jar:/builds/.m2/repository/eu/stamp-project/test-runner/4.11/test-runner-4.11.jar:/builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar:/builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar:/builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar:/builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.8/org.jacoco.core-0.8.8.jar:/builds/.m2/repository/org/ow2/asm/asm/9.2/asm-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.8/org.jacoco.agent-0.8.8-runtime.jar:/builds/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/builds/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-core/2.17.2/log4j-core-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-jcl/2.17.2/log4j-jcl-2.17.2.jar:/builds/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/builds/.m2/repository/info/picocli/picocli/4.6.3/picocli-4.6.3.jar:/builds/.m2/repository/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar:/builds/.m2/repository/net/sf/supercsv/super-csv/2.4.0/super-csv-2.4.0.jar:/builds/.m2/repository/com/github/stefanbirkner/system-lambda/1.2.1/system-lambda-1.2.1.jar:/builds/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.jar:/builds/.m2/repository/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar:/builds/.m2/repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.jar:/builds/.m2/repository/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.jar:/builds/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/builds/.m2/repository/org/reflections/reflections/0.9.9-RC1/reflections-0.9.9-RC1.jar:/builds/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/builds/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/builds/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar:/builds/.m2/repository/com/google/guava/guava/32.0.0-jre/guava-32.0.0-jre.jar:/builds/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/builds/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/builds/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar:/builds/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar:/builds/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar:/builds/.m2/repository/ch/qos/logback/logback-classic/1.2.13/logback-classic-1.2.13.jar:/builds/.m2/repository/ch/qos/logback/logback-core/1.2.13/logback-core-1.2.13.jar:/builds/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar:/builds/.m2/repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/gov/nasa/jpf/jpf/1154/jpf-1154.jar:/builds/.m2/repository/gov/nasa/jpf/jpf-symbc/576/jpf-symbc-576.jar:/builds/.m2/repository/com/microsoft/z3/z3/0.0.1/z3-0.0.1.jar:/builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-SNAPSHOT.jar:/builds/.m2/repository/org/eclipse/jdt/org.eclipse.jdt.core/3.39.0/org.eclipse.jdt.core-3.39.0.jar:/builds/.m2/repository/org/eclipse/jdt/ecj/3.39.0/ecj-3.39.0.jar:/builds/.m2/repository/com/martiansoftware/jsap/2.1/jsap-2.1.jar:/builds/.m2/repository/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar:/builds/.m2/repository/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar:/builds/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar:/builds/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar:/builds/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar:/builds/.m2/repository/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar:/builds/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/builds/.m2/repository/org/smtlib/smtlib/0.9.7.1/smtlib-0.9.7.1.jar:/builds/.m2/repository/com/gzoltar/gzoltar/0.1.1/gzoltar-0.1.1.jar:/builds/.m2/repository/commons-cli/commons-cli/1.3/commons-cli-1.3.jar:/builds/.m2/repository/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/CocoSpoon-1.0.0-SNAPSHOT.jar:/builds/.m2/repository/org/easytesting/fest-assert/1.4/fest-assert-1.4.jar:/builds/.m2/repository/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.jar:/builds/.m2/repository/com/cloudbees/diff4j/1.2/diff4j-1.2.jar:/builds/.m2/repository/org/jvnet/localizer/localizer/1.12/localizer-1.12.jar:/builds/.m2/repository/org/json/json/20231013/json-20231013.jar: fr.inria.lille.repair.MethodTestRunner nopol_examples.nopol_example_1.NopolExampleTest#test4 nopol_examples.nopol_example_1.NopolExampleTest#test5 nopol_examples.nopol_example_1.NopolExampleTest#test2 nopol_examples.nopol_example_1.NopolExampleTest#test3 nopol_examples.nopol_example_1.NopolExampleTest#test9 nopol_examples.nopol_example_1.NopolExampleTest#test1 [11783] WARN DynamothCodeGenesisImpl - Unable to spoon the project java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.initSpoon(DynamothCodeGenesisImpl.java:337) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processClassPrepareEvent(DynamothCodeGenesisImpl.java:202) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:176) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test1(DynamothCodeGenesisTest.java:52) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) [11789] INFO DynamothCodeGenesisImpl - [test] nopol_examples.nopol_example_1.NopolExampleTest#test4 iteration 0 java.lang.NullPointerException: Cannot invoke "fr.inria.lille.repair.synthesis.collect.SpoonElementsCollector.collect(com.sun.jdi.ThreadReference)" because "this.spoonElementsCollector" is null at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processBreakPointEvents(DynamothCodeGenesisImpl.java:281) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:179) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test1(DynamothCodeGenesisTest.java:52) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) java -cp /builds/workspace/nopol/nopol/../test-projects/target/test-classes:/builds/workspace/nopol/nopol/../test-projects/target/classes:/builds/workspace/nopol/nopol/lib/junit-4.11.jar:/builds/workspace/nopol/nopol/target/test-classes:/builds/workspace/nopol/nopol/target/classes:/builds/.m2/repository/com/github/spoonlabs/flacoco/1.0.5/flacoco-1.0.5.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar:/builds/.m2/repository/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar:/builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar:/builds/.m2/repository/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.jar:/builds/.m2/repository/eu/stamp-project/test-runner/4.11/test-runner-4.11.jar:/builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar:/builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar:/builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar:/builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.8/org.jacoco.core-0.8.8.jar:/builds/.m2/repository/org/ow2/asm/asm/9.2/asm-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.8/org.jacoco.agent-0.8.8-runtime.jar:/builds/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/builds/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-core/2.17.2/log4j-core-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-jcl/2.17.2/log4j-jcl-2.17.2.jar:/builds/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/builds/.m2/repository/info/picocli/picocli/4.6.3/picocli-4.6.3.jar:/builds/.m2/repository/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar:/builds/.m2/repository/net/sf/supercsv/super-csv/2.4.0/super-csv-2.4.0.jar:/builds/.m2/repository/com/github/stefanbirkner/system-lambda/1.2.1/system-lambda-1.2.1.jar:/builds/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.jar:/builds/.m2/repository/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar:/builds/.m2/repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.jar:/builds/.m2/repository/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.jar:/builds/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/builds/.m2/repository/org/reflections/reflections/0.9.9-RC1/reflections-0.9.9-RC1.jar:/builds/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/builds/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/builds/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar:/builds/.m2/repository/com/google/guava/guava/32.0.0-jre/guava-32.0.0-jre.jar:/builds/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/builds/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/builds/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar:/builds/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar:/builds/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar:/builds/.m2/repository/ch/qos/logback/logback-classic/1.2.13/logback-classic-1.2.13.jar:/builds/.m2/repository/ch/qos/logback/logback-core/1.2.13/logback-core-1.2.13.jar:/builds/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar:/builds/.m2/repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/gov/nasa/jpf/jpf/1154/jpf-1154.jar:/builds/.m2/repository/gov/nasa/jpf/jpf-symbc/576/jpf-symbc-576.jar:/builds/.m2/repository/com/microsoft/z3/z3/0.0.1/z3-0.0.1.jar:/builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-SNAPSHOT.jar:/builds/.m2/repository/org/eclipse/jdt/org.eclipse.jdt.core/3.39.0/org.eclipse.jdt.core-3.39.0.jar:/builds/.m2/repository/org/eclipse/jdt/ecj/3.39.0/ecj-3.39.0.jar:/builds/.m2/repository/com/martiansoftware/jsap/2.1/jsap-2.1.jar:/builds/.m2/repository/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar:/builds/.m2/repository/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar:/builds/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar:/builds/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar:/builds/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar:/builds/.m2/repository/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar:/builds/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/builds/.m2/repository/org/smtlib/smtlib/0.9.7.1/smtlib-0.9.7.1.jar:/builds/.m2/repository/com/gzoltar/gzoltar/0.1.1/gzoltar-0.1.1.jar:/builds/.m2/repository/commons-cli/commons-cli/1.3/commons-cli-1.3.jar:/builds/.m2/repository/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/CocoSpoon-1.0.0-SNAPSHOT.jar:/builds/.m2/repository/org/easytesting/fest-assert/1.4/fest-assert-1.4.jar:/builds/.m2/repository/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.jar:/builds/.m2/repository/com/cloudbees/diff4j/1.2/diff4j-1.2.jar:/builds/.m2/repository/org/jvnet/localizer/localizer/1.12/localizer-1.12.jar:/builds/.m2/repository/org/json/json/20231013/json-20231013.jar: fr.inria.lille.repair.MethodTestRunner nopol_examples.nopol_example_2.NopolExampleTest#test4 nopol_examples.nopol_example_2.NopolExampleTest#test5 nopol_examples.nopol_example_2.NopolExampleTest#test2 nopol_examples.nopol_example_2.NopolExampleTest#test3 nopol_examples.nopol_example_2.NopolExampleTest#test8 nopol_examples.nopol_example_2.NopolExampleTest#test9 nopol_examples.nopol_example_2.NopolExampleTest#test6 nopol_examples.nopol_example_2.NopolExampleTest#test7 nopol_examples.nopol_example_2.NopolExampleTest#test1 [12302] WARN DynamothCodeGenesisImpl - Unable to spoon the project java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.initSpoon(DynamothCodeGenesisImpl.java:337) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processClassPrepareEvent(DynamothCodeGenesisImpl.java:202) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:176) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test2(DynamothCodeGenesisTest.java:70) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) [12305] INFO DynamothCodeGenesisImpl - [test] nopol_examples.nopol_example_2.NopolExampleTest#test4 iteration 0 java.lang.NullPointerException: Cannot invoke "fr.inria.lille.repair.synthesis.collect.SpoonElementsCollector.collect(com.sun.jdi.ThreadReference)" because "this.spoonElementsCollector" is null at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processBreakPointEvents(DynamothCodeGenesisImpl.java:281) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:179) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test2(DynamothCodeGenesisTest.java:70) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) java -cp /builds/workspace/nopol/nopol/../test-projects/target/test-classes:/builds/workspace/nopol/nopol/../test-projects/target/classes:/builds/workspace/nopol/nopol/lib/junit-4.11.jar:/builds/workspace/nopol/nopol/target/test-classes:/builds/workspace/nopol/nopol/target/classes:/builds/.m2/repository/com/github/spoonlabs/flacoco/1.0.5/flacoco-1.0.5.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar:/builds/.m2/repository/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar:/builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar:/builds/.m2/repository/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.jar:/builds/.m2/repository/eu/stamp-project/test-runner/4.11/test-runner-4.11.jar:/builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar:/builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar:/builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar:/builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.8/org.jacoco.core-0.8.8.jar:/builds/.m2/repository/org/ow2/asm/asm/9.2/asm-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.8/org.jacoco.agent-0.8.8-runtime.jar:/builds/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/builds/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-core/2.17.2/log4j-core-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-jcl/2.17.2/log4j-jcl-2.17.2.jar:/builds/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/builds/.m2/repository/info/picocli/picocli/4.6.3/picocli-4.6.3.jar:/builds/.m2/repository/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar:/builds/.m2/repository/net/sf/supercsv/super-csv/2.4.0/super-csv-2.4.0.jar:/builds/.m2/repository/com/github/stefanbirkner/system-lambda/1.2.1/system-lambda-1.2.1.jar:/builds/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.jar:/builds/.m2/repository/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar:/builds/.m2/repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.jar:/builds/.m2/repository/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.jar:/builds/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/builds/.m2/repository/org/reflections/reflections/0.9.9-RC1/reflections-0.9.9-RC1.jar:/builds/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/builds/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/builds/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar:/builds/.m2/repository/com/google/guava/guava/32.0.0-jre/guava-32.0.0-jre.jar:/builds/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/builds/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/builds/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar:/builds/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar:/builds/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar:/builds/.m2/repository/ch/qos/logback/logback-classic/1.2.13/logback-classic-1.2.13.jar:/builds/.m2/repository/ch/qos/logback/logback-core/1.2.13/logback-core-1.2.13.jar:/builds/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar:/builds/.m2/repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/gov/nasa/jpf/jpf/1154/jpf-1154.jar:/builds/.m2/repository/gov/nasa/jpf/jpf-symbc/576/jpf-symbc-576.jar:/builds/.m2/repository/com/microsoft/z3/z3/0.0.1/z3-0.0.1.jar:/builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-SNAPSHOT.jar:/builds/.m2/repository/org/eclipse/jdt/org.eclipse.jdt.core/3.39.0/org.eclipse.jdt.core-3.39.0.jar:/builds/.m2/repository/org/eclipse/jdt/ecj/3.39.0/ecj-3.39.0.jar:/builds/.m2/repository/com/martiansoftware/jsap/2.1/jsap-2.1.jar:/builds/.m2/repository/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar:/builds/.m2/repository/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar:/builds/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar:/builds/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar:/builds/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar:/builds/.m2/repository/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar:/builds/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/builds/.m2/repository/org/smtlib/smtlib/0.9.7.1/smtlib-0.9.7.1.jar:/builds/.m2/repository/com/gzoltar/gzoltar/0.1.1/gzoltar-0.1.1.jar:/builds/.m2/repository/commons-cli/commons-cli/1.3/commons-cli-1.3.jar:/builds/.m2/repository/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/CocoSpoon-1.0.0-SNAPSHOT.jar:/builds/.m2/repository/org/easytesting/fest-assert/1.4/fest-assert-1.4.jar:/builds/.m2/repository/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.jar:/builds/.m2/repository/com/cloudbees/diff4j/1.2/diff4j-1.2.jar:/builds/.m2/repository/org/jvnet/localizer/localizer/1.12/localizer-1.12.jar:/builds/.m2/repository/org/json/json/20231013/json-20231013.jar: fr.inria.lille.repair.MethodTestRunner nopol_examples.nopol_example_3.NopolExampleTest#test4 nopol_examples.nopol_example_3.NopolExampleTest#test5 nopol_examples.nopol_example_3.NopolExampleTest#test2 nopol_examples.nopol_example_3.NopolExampleTest#test3 nopol_examples.nopol_example_3.NopolExampleTest#test8 nopol_examples.nopol_example_3.NopolExampleTest#test9 nopol_examples.nopol_example_3.NopolExampleTest#test6 nopol_examples.nopol_example_3.NopolExampleTest#test7 nopol_examples.nopol_example_3.NopolExampleTest#test1 [12789] WARN DynamothCodeGenesisImpl - Unable to spoon the project java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.initSpoon(DynamothCodeGenesisImpl.java:337) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processClassPrepareEvent(DynamothCodeGenesisImpl.java:202) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:176) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test3(DynamothCodeGenesisTest.java:88) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) [12792] INFO DynamothCodeGenesisImpl - [test] nopol_examples.nopol_example_3.NopolExampleTest#test4 iteration 0 java.lang.NullPointerException: Cannot invoke "fr.inria.lille.repair.synthesis.collect.SpoonElementsCollector.collect(com.sun.jdi.ThreadReference)" because "this.spoonElementsCollector" is null at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processBreakPointEvents(DynamothCodeGenesisImpl.java:281) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:179) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test3(DynamothCodeGenesisTest.java:88) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) java -cp /builds/workspace/nopol/nopol/../test-projects/target/test-classes:/builds/workspace/nopol/nopol/../test-projects/target/classes:/builds/workspace/nopol/nopol/lib/junit-4.11.jar:/builds/workspace/nopol/nopol/target/test-classes:/builds/workspace/nopol/nopol/target/classes:/builds/.m2/repository/com/github/spoonlabs/flacoco/1.0.5/flacoco-1.0.5.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar:/builds/.m2/repository/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar:/builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar:/builds/.m2/repository/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.jar:/builds/.m2/repository/eu/stamp-project/test-runner/4.11/test-runner-4.11.jar:/builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar:/builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar:/builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar:/builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.8/org.jacoco.core-0.8.8.jar:/builds/.m2/repository/org/ow2/asm/asm/9.2/asm-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.8/org.jacoco.agent-0.8.8-runtime.jar:/builds/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/builds/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-core/2.17.2/log4j-core-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-jcl/2.17.2/log4j-jcl-2.17.2.jar:/builds/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/builds/.m2/repository/info/picocli/picocli/4.6.3/picocli-4.6.3.jar:/builds/.m2/repository/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar:/builds/.m2/repository/net/sf/supercsv/super-csv/2.4.0/super-csv-2.4.0.jar:/builds/.m2/repository/com/github/stefanbirkner/system-lambda/1.2.1/system-lambda-1.2.1.jar:/builds/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.jar:/builds/.m2/repository/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar:/builds/.m2/repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.jar:/builds/.m2/repository/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.jar:/builds/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/builds/.m2/repository/org/reflections/reflections/0.9.9-RC1/reflections-0.9.9-RC1.jar:/builds/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/builds/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/builds/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar:/builds/.m2/repository/com/google/guava/guava/32.0.0-jre/guava-32.0.0-jre.jar:/builds/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/builds/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/builds/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar:/builds/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar:/builds/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar:/builds/.m2/repository/ch/qos/logback/logback-classic/1.2.13/logback-classic-1.2.13.jar:/builds/.m2/repository/ch/qos/logback/logback-core/1.2.13/logback-core-1.2.13.jar:/builds/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar:/builds/.m2/repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/gov/nasa/jpf/jpf/1154/jpf-1154.jar:/builds/.m2/repository/gov/nasa/jpf/jpf-symbc/576/jpf-symbc-576.jar:/builds/.m2/repository/com/microsoft/z3/z3/0.0.1/z3-0.0.1.jar:/builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-SNAPSHOT.jar:/builds/.m2/repository/org/eclipse/jdt/org.eclipse.jdt.core/3.39.0/org.eclipse.jdt.core-3.39.0.jar:/builds/.m2/repository/org/eclipse/jdt/ecj/3.39.0/ecj-3.39.0.jar:/builds/.m2/repository/com/martiansoftware/jsap/2.1/jsap-2.1.jar:/builds/.m2/repository/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar:/builds/.m2/repository/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar:/builds/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar:/builds/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar:/builds/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar:/builds/.m2/repository/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar:/builds/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/builds/.m2/repository/org/smtlib/smtlib/0.9.7.1/smtlib-0.9.7.1.jar:/builds/.m2/repository/com/gzoltar/gzoltar/0.1.1/gzoltar-0.1.1.jar:/builds/.m2/repository/commons-cli/commons-cli/1.3/commons-cli-1.3.jar:/builds/.m2/repository/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/CocoSpoon-1.0.0-SNAPSHOT.jar:/builds/.m2/repository/org/easytesting/fest-assert/1.4/fest-assert-1.4.jar:/builds/.m2/repository/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.jar:/builds/.m2/repository/com/cloudbees/diff4j/1.2/diff4j-1.2.jar:/builds/.m2/repository/org/jvnet/localizer/localizer/1.12/localizer-1.12.jar:/builds/.m2/repository/org/json/json/20231013/json-20231013.jar: fr.inria.lille.repair.MethodTestRunner nopol_examples.nopol_example_4.NopolExampleTest#test4 nopol_examples.nopol_example_4.NopolExampleTest#test5 nopol_examples.nopol_example_4.NopolExampleTest#test2 nopol_examples.nopol_example_4.NopolExampleTest#test3 nopol_examples.nopol_example_4.NopolExampleTest#test8 nopol_examples.nopol_example_4.NopolExampleTest#test9 nopol_examples.nopol_example_4.NopolExampleTest#test11 nopol_examples.nopol_example_4.NopolExampleTest#test6 nopol_examples.nopol_example_4.NopolExampleTest#test10 nopol_examples.nopol_example_4.NopolExampleTest#test7 nopol_examples.nopol_example_4.NopolExampleTest#test1 [13251] WARN DynamothCodeGenesisImpl - Unable to spoon the project java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.initSpoon(DynamothCodeGenesisImpl.java:337) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processClassPrepareEvent(DynamothCodeGenesisImpl.java:202) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:176) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test4(DynamothCodeGenesisTest.java:108) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) [13257] INFO DynamothCodeGenesisImpl - [test] nopol_examples.nopol_example_4.NopolExampleTest#test4 iteration 0 java.lang.NullPointerException: Cannot invoke "fr.inria.lille.repair.synthesis.collect.SpoonElementsCollector.collect(com.sun.jdi.ThreadReference)" because "this.spoonElementsCollector" is null at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processBreakPointEvents(DynamothCodeGenesisImpl.java:281) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:179) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test4(DynamothCodeGenesisTest.java:108) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) java -cp /builds/workspace/nopol/nopol/../test-projects/target/test-classes:/builds/workspace/nopol/nopol/../test-projects/target/classes:/builds/workspace/nopol/nopol/lib/junit-4.11.jar:/builds/workspace/nopol/nopol/target/test-classes:/builds/workspace/nopol/nopol/target/classes:/builds/.m2/repository/com/github/spoonlabs/flacoco/1.0.5/flacoco-1.0.5.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar:/builds/.m2/repository/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar:/builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar:/builds/.m2/repository/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.jar:/builds/.m2/repository/eu/stamp-project/test-runner/4.11/test-runner-4.11.jar:/builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar:/builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar:/builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar:/builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.8/org.jacoco.core-0.8.8.jar:/builds/.m2/repository/org/ow2/asm/asm/9.2/asm-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.8/org.jacoco.agent-0.8.8-runtime.jar:/builds/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/builds/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-core/2.17.2/log4j-core-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-jcl/2.17.2/log4j-jcl-2.17.2.jar:/builds/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/builds/.m2/repository/info/picocli/picocli/4.6.3/picocli-4.6.3.jar:/builds/.m2/repository/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar:/builds/.m2/repository/net/sf/supercsv/super-csv/2.4.0/super-csv-2.4.0.jar:/builds/.m2/repository/com/github/stefanbirkner/system-lambda/1.2.1/system-lambda-1.2.1.jar:/builds/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.jar:/builds/.m2/repository/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar:/builds/.m2/repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.jar:/builds/.m2/repository/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.jar:/builds/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/builds/.m2/repository/org/reflections/reflections/0.9.9-RC1/reflections-0.9.9-RC1.jar:/builds/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/builds/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/builds/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar:/builds/.m2/repository/com/google/guava/guava/32.0.0-jre/guava-32.0.0-jre.jar:/builds/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/builds/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/builds/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar:/builds/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar:/builds/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar:/builds/.m2/repository/ch/qos/logback/logback-classic/1.2.13/logback-classic-1.2.13.jar:/builds/.m2/repository/ch/qos/logback/logback-core/1.2.13/logback-core-1.2.13.jar:/builds/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar:/builds/.m2/repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/gov/nasa/jpf/jpf/1154/jpf-1154.jar:/builds/.m2/repository/gov/nasa/jpf/jpf-symbc/576/jpf-symbc-576.jar:/builds/.m2/repository/com/microsoft/z3/z3/0.0.1/z3-0.0.1.jar:/builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-SNAPSHOT.jar:/builds/.m2/repository/org/eclipse/jdt/org.eclipse.jdt.core/3.39.0/org.eclipse.jdt.core-3.39.0.jar:/builds/.m2/repository/org/eclipse/jdt/ecj/3.39.0/ecj-3.39.0.jar:/builds/.m2/repository/com/martiansoftware/jsap/2.1/jsap-2.1.jar:/builds/.m2/repository/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar:/builds/.m2/repository/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar:/builds/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar:/builds/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar:/builds/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar:/builds/.m2/repository/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar:/builds/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/builds/.m2/repository/org/smtlib/smtlib/0.9.7.1/smtlib-0.9.7.1.jar:/builds/.m2/repository/com/gzoltar/gzoltar/0.1.1/gzoltar-0.1.1.jar:/builds/.m2/repository/commons-cli/commons-cli/1.3/commons-cli-1.3.jar:/builds/.m2/repository/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/CocoSpoon-1.0.0-SNAPSHOT.jar:/builds/.m2/repository/org/easytesting/fest-assert/1.4/fest-assert-1.4.jar:/builds/.m2/repository/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.jar:/builds/.m2/repository/com/cloudbees/diff4j/1.2/diff4j-1.2.jar:/builds/.m2/repository/org/jvnet/localizer/localizer/1.12/localizer-1.12.jar:/builds/.m2/repository/org/json/json/20231013/json-20231013.jar: fr.inria.lille.repair.MethodTestRunner nopol_examples.nopol_example_5.NopolExampleTest#test4 nopol_examples.nopol_example_5.NopolExampleTest#test5 nopol_examples.nopol_example_5.NopolExampleTest#test2 nopol_examples.nopol_example_5.NopolExampleTest#test3 nopol_examples.nopol_example_5.NopolExampleTest#test6 nopol_examples.nopol_example_5.NopolExampleTest#test1 [13739] WARN DynamothCodeGenesisImpl - Unable to spoon the project java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.initSpoon(DynamothCodeGenesisImpl.java:337) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processClassPrepareEvent(DynamothCodeGenesisImpl.java:202) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:176) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test5(DynamothCodeGenesisTest.java:127) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) [13745] INFO DynamothCodeGenesisImpl - [test] nopol_examples.nopol_example_5.NopolExampleTest#test4 iteration 0 java.lang.NullPointerException: Cannot invoke "fr.inria.lille.repair.synthesis.collect.SpoonElementsCollector.collect(com.sun.jdi.ThreadReference)" because "this.spoonElementsCollector" is null at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processBreakPointEvents(DynamothCodeGenesisImpl.java:281) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:179) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test5(DynamothCodeGenesisTest.java:127) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) java -cp /builds/workspace/nopol/nopol/../test-projects/target/test-classes:/builds/workspace/nopol/nopol/../test-projects/target/classes:/builds/workspace/nopol/nopol/lib/junit-4.11.jar:/builds/workspace/nopol/nopol/target/test-classes:/builds/workspace/nopol/nopol/target/classes:/builds/.m2/repository/com/github/spoonlabs/flacoco/1.0.5/flacoco-1.0.5.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar:/builds/.m2/repository/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar:/builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar:/builds/.m2/repository/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.jar:/builds/.m2/repository/eu/stamp-project/test-runner/4.11/test-runner-4.11.jar:/builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar:/builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar:/builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar:/builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.8/org.jacoco.core-0.8.8.jar:/builds/.m2/repository/org/ow2/asm/asm/9.2/asm-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.8/org.jacoco.agent-0.8.8-runtime.jar:/builds/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/builds/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-core/2.17.2/log4j-core-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-jcl/2.17.2/log4j-jcl-2.17.2.jar:/builds/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/builds/.m2/repository/info/picocli/picocli/4.6.3/picocli-4.6.3.jar:/builds/.m2/repository/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar:/builds/.m2/repository/net/sf/supercsv/super-csv/2.4.0/super-csv-2.4.0.jar:/builds/.m2/repository/com/github/stefanbirkner/system-lambda/1.2.1/system-lambda-1.2.1.jar:/builds/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.jar:/builds/.m2/repository/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar:/builds/.m2/repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.jar:/builds/.m2/repository/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.jar:/builds/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/builds/.m2/repository/org/reflections/reflections/0.9.9-RC1/reflections-0.9.9-RC1.jar:/builds/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/builds/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/builds/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar:/builds/.m2/repository/com/google/guava/guava/32.0.0-jre/guava-32.0.0-jre.jar:/builds/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/builds/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/builds/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar:/builds/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar:/builds/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar:/builds/.m2/repository/ch/qos/logback/logback-classic/1.2.13/logback-classic-1.2.13.jar:/builds/.m2/repository/ch/qos/logback/logback-core/1.2.13/logback-core-1.2.13.jar:/builds/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar:/builds/.m2/repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/gov/nasa/jpf/jpf/1154/jpf-1154.jar:/builds/.m2/repository/gov/nasa/jpf/jpf-symbc/576/jpf-symbc-576.jar:/builds/.m2/repository/com/microsoft/z3/z3/0.0.1/z3-0.0.1.jar:/builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-SNAPSHOT.jar:/builds/.m2/repository/org/eclipse/jdt/org.eclipse.jdt.core/3.39.0/org.eclipse.jdt.core-3.39.0.jar:/builds/.m2/repository/org/eclipse/jdt/ecj/3.39.0/ecj-3.39.0.jar:/builds/.m2/repository/com/martiansoftware/jsap/2.1/jsap-2.1.jar:/builds/.m2/repository/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar:/builds/.m2/repository/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar:/builds/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar:/builds/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar:/builds/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar:/builds/.m2/repository/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar:/builds/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/builds/.m2/repository/org/smtlib/smtlib/0.9.7.1/smtlib-0.9.7.1.jar:/builds/.m2/repository/com/gzoltar/gzoltar/0.1.1/gzoltar-0.1.1.jar:/builds/.m2/repository/commons-cli/commons-cli/1.3/commons-cli-1.3.jar:/builds/.m2/repository/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/CocoSpoon-1.0.0-SNAPSHOT.jar:/builds/.m2/repository/org/easytesting/fest-assert/1.4/fest-assert-1.4.jar:/builds/.m2/repository/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.jar:/builds/.m2/repository/com/cloudbees/diff4j/1.2/diff4j-1.2.jar:/builds/.m2/repository/org/jvnet/localizer/localizer/1.12/localizer-1.12.jar:/builds/.m2/repository/org/json/json/20231013/json-20231013.jar: fr.inria.lille.repair.MethodTestRunner nopol_examples.nopol_example_6.NopolExampleTest#test4 nopol_examples.nopol_example_6.NopolExampleTest#test5 nopol_examples.nopol_example_6.NopolExampleTest#test2 nopol_examples.nopol_example_6.NopolExampleTest#test3 nopol_examples.nopol_example_6.NopolExampleTest#test6 nopol_examples.nopol_example_6.NopolExampleTest#test1 [14225] WARN DynamothCodeGenesisImpl - Unable to spoon the project java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.initSpoon(DynamothCodeGenesisImpl.java:337) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processClassPrepareEvent(DynamothCodeGenesisImpl.java:202) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:176) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test6(DynamothCodeGenesisTest.java:142) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) [14230] INFO DynamothCodeGenesisImpl - [test] nopol_examples.nopol_example_6.NopolExampleTest#test4 iteration 0 java.lang.NullPointerException: Cannot invoke "fr.inria.lille.repair.synthesis.collect.SpoonElementsCollector.collect(com.sun.jdi.ThreadReference)" because "this.spoonElementsCollector" is null at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processBreakPointEvents(DynamothCodeGenesisImpl.java:281) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:179) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test6(DynamothCodeGenesisTest.java:142) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) java -cp /builds/workspace/nopol/nopol/../test-projects/target/test-classes:/builds/workspace/nopol/nopol/../test-projects/target/classes:/builds/workspace/nopol/nopol/lib/junit-4.11.jar:/builds/workspace/nopol/nopol/target/test-classes:/builds/workspace/nopol/nopol/target/classes:/builds/.m2/repository/com/github/spoonlabs/flacoco/1.0.5/flacoco-1.0.5.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar:/builds/.m2/repository/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar:/builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar:/builds/.m2/repository/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar:/builds/.m2/repository/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.jar:/builds/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.jar:/builds/.m2/repository/eu/stamp-project/test-runner/4.11/test-runner-4.11.jar:/builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar:/builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar:/builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar:/builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.8/org.jacoco.core-0.8.8.jar:/builds/.m2/repository/org/ow2/asm/asm/9.2/asm-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar:/builds/.m2/repository/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.8/org.jacoco.agent-0.8.8-runtime.jar:/builds/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/builds/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-core/2.17.2/log4j-core-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar:/builds/.m2/repository/org/apache/logging/log4j/log4j-jcl/2.17.2/log4j-jcl-2.17.2.jar:/builds/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/builds/.m2/repository/info/picocli/picocli/4.6.3/picocli-4.6.3.jar:/builds/.m2/repository/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar:/builds/.m2/repository/net/sf/supercsv/super-csv/2.4.0/super-csv-2.4.0.jar:/builds/.m2/repository/com/github/stefanbirkner/system-lambda/1.2.1/system-lambda-1.2.1.jar:/builds/.m2/repository/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.jar:/builds/.m2/repository/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.jar:/builds/.m2/repository/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar:/builds/.m2/repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar:/builds/.m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.jar:/builds/.m2/repository/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar:/builds/.m2/repository/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.jar:/builds/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/builds/.m2/repository/org/reflections/reflections/0.9.9-RC1/reflections-0.9.9-RC1.jar:/builds/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/builds/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/builds/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar:/builds/.m2/repository/com/google/guava/guava/32.0.0-jre/guava-32.0.0-jre.jar:/builds/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/builds/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/builds/.m2/repository/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar:/builds/.m2/repository/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar:/builds/.m2/repository/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar:/builds/.m2/repository/ch/qos/logback/logback-classic/1.2.13/logback-classic-1.2.13.jar:/builds/.m2/repository/ch/qos/logback/logback-core/1.2.13/logback-core-1.2.13.jar:/builds/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar:/builds/.m2/repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/gov/nasa/jpf/jpf/1154/jpf-1154.jar:/builds/.m2/repository/gov/nasa/jpf/jpf-symbc/576/jpf-symbc-576.jar:/builds/.m2/repository/com/microsoft/z3/z3/0.0.1/z3-0.0.1.jar:/builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.1.1-SNAPSHOT/spoon-core-11.1.1-SNAPSHOT.jar:/builds/.m2/repository/org/eclipse/jdt/org.eclipse.jdt.core/3.39.0/org.eclipse.jdt.core-3.39.0.jar:/builds/.m2/repository/org/eclipse/jdt/ecj/3.39.0/ecj-3.39.0.jar:/builds/.m2/repository/com/martiansoftware/jsap/2.1/jsap-2.1.jar:/builds/.m2/repository/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar:/builds/.m2/repository/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar:/builds/.m2/repository/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar:/builds/.m2/repository/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar:/builds/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar:/builds/.m2/repository/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar:/builds/.m2/repository/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar:/builds/.m2/repository/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.jar:/builds/.m2/repository/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar:/builds/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/builds/.m2/repository/org/smtlib/smtlib/0.9.7.1/smtlib-0.9.7.1.jar:/builds/.m2/repository/com/gzoltar/gzoltar/0.1.1/gzoltar-0.1.1.jar:/builds/.m2/repository/commons-cli/commons-cli/1.3/commons-cli-1.3.jar:/builds/.m2/repository/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/CocoSpoon-1.0.0-SNAPSHOT.jar:/builds/.m2/repository/org/easytesting/fest-assert/1.4/fest-assert-1.4.jar:/builds/.m2/repository/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.jar:/builds/.m2/repository/com/cloudbees/diff4j/1.2/diff4j-1.2.jar:/builds/.m2/repository/org/jvnet/localizer/localizer/1.12/localizer-1.12.jar:/builds/.m2/repository/org/json/json/20231013/json-20231013.jar: fr.inria.lille.repair.MethodTestRunner nopol_examples.nopol_example_8.NopolExampleTest#test_4 nopol_examples.nopol_example_8.NopolExampleTest#test_3 nopol_examples.nopol_example_8.NopolExampleTest#test_2 nopol_examples.nopol_example_8.NopolExampleTest#test_1 nopol_examples.nopol_example_8.NopolExampleTest#test_11 nopol_examples.nopol_example_8.NopolExampleTest#test_9 nopol_examples.nopol_example_8.NopolExampleTest#test_10 nopol_examples.nopol_example_8.NopolExampleTest#test_8 nopol_examples.nopol_example_8.NopolExampleTest#test_7 nopol_examples.nopol_example_8.NopolExampleTest#test_6 nopol_examples.nopol_example_8.NopolExampleTest#test_5 [14683] WARN DynamothCodeGenesisImpl - Unable to spoon the project java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.initSpoon(DynamothCodeGenesisImpl.java:337) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processClassPrepareEvent(DynamothCodeGenesisImpl.java:202) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:176) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test8(DynamothCodeGenesisTest.java:163) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) [14687] INFO DynamothCodeGenesisImpl - [test] nopol_examples.nopol_example_8.NopolExampleTest#test_4 iteration 0 java.lang.NullPointerException: Cannot invoke "fr.inria.lille.repair.synthesis.collect.SpoonElementsCollector.collect(com.sun.jdi.ThreadReference)" because "this.spoonElementsCollector" is null at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processBreakPointEvents(DynamothCodeGenesisImpl.java:281) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.processVMEvents(DynamothCodeGenesisImpl.java:179) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:148) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test8(DynamothCodeGenesisTest.java:163) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray2(ReflectionUtils.java:208) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:159) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:87) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:95) Tests run: 10, Failures: 0, Errors: 9, Skipped: 0, Time elapsed: 4.925 sec <<< FAILURE! test12(fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest) Time elapsed: 0.898 sec <<< ERROR! java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) at java.base/java.util.Objects.checkIndex(Objects.java:361) at java.base/java.util.ArrayList.get(ArrayList.java:427) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.printSummary(DynamothCodeGenesisImpl.java:590) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.combineValues(DynamothCodeGenesisImpl.java:546) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:154) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test12(DynamothCodeGenesisTest.java:178) test13(fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest) Time elapsed: 0.617 sec <<< ERROR! java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) at java.base/java.util.Objects.checkIndex(Objects.java:361) at java.base/java.util.ArrayList.get(ArrayList.java:427) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.printSummary(DynamothCodeGenesisImpl.java:590) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.combineValues(DynamothCodeGenesisImpl.java:546) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:154) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test13(DynamothCodeGenesisTest.java:209) test1(fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest) Time elapsed: 0.487 sec <<< ERROR! java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) at java.base/java.util.Objects.checkIndex(Objects.java:361) at java.base/java.util.ArrayList.get(ArrayList.java:427) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.printSummary(DynamothCodeGenesisImpl.java:590) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.combineValues(DynamothCodeGenesisImpl.java:546) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:154) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test1(DynamothCodeGenesisTest.java:52) test2(fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest) Time elapsed: 0.523 sec <<< ERROR! java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) at java.base/java.util.Objects.checkIndex(Objects.java:361) at java.base/java.util.ArrayList.get(ArrayList.java:427) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.printSummary(DynamothCodeGenesisImpl.java:590) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.combineValues(DynamothCodeGenesisImpl.java:546) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:154) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test2(DynamothCodeGenesisTest.java:70) test3(fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest) Time elapsed: 0.471 sec <<< ERROR! java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) at java.base/java.util.Objects.checkIndex(Objects.java:361) at java.base/java.util.ArrayList.get(ArrayList.java:427) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.printSummary(DynamothCodeGenesisImpl.java:590) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.combineValues(DynamothCodeGenesisImpl.java:546) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:154) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test3(DynamothCodeGenesisTest.java:88) test4(fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest) Time elapsed: 0.468 sec <<< ERROR! java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) at java.base/java.util.Objects.checkIndex(Objects.java:361) at java.base/java.util.ArrayList.get(ArrayList.java:427) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.printSummary(DynamothCodeGenesisImpl.java:590) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.combineValues(DynamothCodeGenesisImpl.java:546) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:154) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test4(DynamothCodeGenesisTest.java:108) test5(fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest) Time elapsed: 0.492 sec <<< ERROR! java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) at java.base/java.util.Objects.checkIndex(Objects.java:361) at java.base/java.util.ArrayList.get(ArrayList.java:427) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.printSummary(DynamothCodeGenesisImpl.java:590) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.combineValues(DynamothCodeGenesisImpl.java:546) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:154) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test5(DynamothCodeGenesisTest.java:127) test6(fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest) Time elapsed: 0.469 sec <<< ERROR! java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) at java.base/java.util.Objects.checkIndex(Objects.java:361) at java.base/java.util.ArrayList.get(ArrayList.java:427) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.printSummary(DynamothCodeGenesisImpl.java:590) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.combineValues(DynamothCodeGenesisImpl.java:546) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:154) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test6(DynamothCodeGenesisTest.java:142) test8(fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest) Time elapsed: 0.456 sec <<< ERROR! java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) at java.base/java.util.Objects.checkIndex(Objects.java:361) at java.base/java.util.ArrayList.get(ArrayList.java:427) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.printSummary(DynamothCodeGenesisImpl.java:590) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.combineValues(DynamothCodeGenesisImpl.java:546) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisImpl.run(DynamothCodeGenesisImpl.java:154) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.createSynthesizer(DynamothCodeGenesisTest.java:239) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test(DynamothCodeGenesisTest.java:244) at fr.inria.lille.repair.synthesis.DynamothCodeGenesisTest.test8(DynamothCodeGenesisTest.java:163) Running fr.inria.lille.repair.spoon.ConditionnalInstrumenterTest Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 0.009 sec <<< FAILURE! testConditionnalInstrumenter(fr.inria.lille.repair.spoon.ConditionnalInstrumenterTest) Time elapsed: 0 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.spoon.ConditionnalInstrumenterTest.testConditionnalInstrumenter(ConditionnalInstrumenterTest.java:43) testConditionnalLoggingInstrumenter(fr.inria.lille.repair.spoon.ConditionnalInstrumenterTest) Time elapsed: 0 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.spoon.ConditionnalInstrumenterTest.testConditionnalLoggingInstrumenter(ConditionnalInstrumenterTest.java:128) Running fr.inria.lille.repair.expression.ExpressionTest Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec Running fr.inria.lille.repair.nopol.TseEvaluationTest Tests run: 20, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0.044 sec Running fr.inria.lille.repair.nopol.Defects4jEvaluationMathTest Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec Running fr.inria.lille.repair.nopol.Defects4jEvaluationTest Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec Running fr.inria.lille.repair.nopol.NopolTest [14840] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_2] [14840] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [14840] INFO NoPol - Statement type: CONDITIONAL [14840] INFO NoPol - Args: [nopol_examples.nopol_example_2.NopolExampleTest] [14840] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=false, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=DYNAMOTH, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_2], projectClasspath='[Ljava.net.URL;@1f85904a', projectTests=[nopol_examples.nopol_example_2.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [14840] INFO NoPol - Available processors (cores): 1 [14841] INFO NoPol - Free memory: 1 GB [14841] INFO NoPol - Maximum memory: 1 GB [14847] INFO NoPol - Total memory available to JVM: 1 GB [14847] INFO NoPol - Java version: null [14847] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [14848] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [14878] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_1] [14878] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [14878] INFO NoPol - Statement type: CONDITIONAL [14878] INFO NoPol - Args: [nopol_examples.nopol_example_1.NopolExampleTest] [14878] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_1], projectClasspath='[Ljava.net.URL;@7a247711', projectTests=[nopol_examples.nopol_example_1.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [14879] INFO NoPol - Available processors (cores): 1 [14879] INFO NoPol - Free memory: 1 GB [14879] INFO NoPol - Maximum memory: 1 GB [14879] INFO NoPol - Total memory available to JVM: 1 GB [14879] INFO NoPol - Java version: null [14879] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [14879] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [14900] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_2] [14900] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [14900] INFO NoPol - Statement type: CONDITIONAL [14900] INFO NoPol - Args: [nopol_examples.nopol_example_2.NopolExampleTest] [14900] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_2], projectClasspath='[Ljava.net.URL;@45cb5307', projectTests=[nopol_examples.nopol_example_2.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [14900] INFO NoPol - Available processors (cores): 1 [14900] INFO NoPol - Free memory: 1 GB [14901] INFO NoPol - Maximum memory: 1 GB [14901] INFO NoPol - Total memory available to JVM: 1 GB [14901] INFO NoPol - Java version: null [14901] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [14901] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [14922] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_3] [14922] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [14922] INFO NoPol - Statement type: CONDITIONAL [14923] INFO NoPol - Args: [nopol_examples.nopol_example_3.NopolExampleTest] [14923] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_3], projectClasspath='[Ljava.net.URL;@4bf10fe1', projectTests=[nopol_examples.nopol_example_3.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [14923] INFO NoPol - Available processors (cores): 1 [14923] INFO NoPol - Free memory: 1 GB [14923] INFO NoPol - Maximum memory: 1 GB [14923] INFO NoPol - Total memory available to JVM: 1 GB [14923] INFO NoPol - Java version: null [14923] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [14923] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [14944] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_5] [14944] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [14944] INFO NoPol - Statement type: PRECONDITION [14944] INFO NoPol - Args: [nopol_examples.nopol_example_5.NopolExampleTest] [14944] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=PRECONDITION, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_5], projectClasspath='[Ljava.net.URL;@99223ac', projectTests=[nopol_examples.nopol_example_5.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [14944] INFO NoPol - Available processors (cores): 1 [14944] INFO NoPol - Free memory: 1 GB [14944] INFO NoPol - Maximum memory: 1 GB [14944] INFO NoPol - Total memory available to JVM: 1 GB [14945] INFO NoPol - Java version: null [14945] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [14945] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [14968] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_6] [14968] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [14969] INFO NoPol - Statement type: CONDITIONAL [14969] INFO NoPol - Args: [nopol_examples.nopol_example_6.NopolExampleTest] [14969] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_6], projectClasspath='[Ljava.net.URL;@2cebf82f', projectTests=[nopol_examples.nopol_example_6.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [14969] INFO NoPol - Available processors (cores): 1 [14969] INFO NoPol - Free memory: 1 GB [14969] INFO NoPol - Maximum memory: 1 GB [14969] INFO NoPol - Total memory available to JVM: 1 GB [14970] INFO NoPol - Java version: null [14970] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [14970] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [14990] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_7] [14990] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [14990] INFO NoPol - Statement type: CONDITIONAL [14990] INFO NoPol - Args: [nopol_examples.nopol_example_7.NopolExampleTest] [14990] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_7], projectClasspath='[Ljava.net.URL;@36a1fd20', projectTests=[nopol_examples.nopol_example_7.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [14990] INFO NoPol - Available processors (cores): 1 [14990] INFO NoPol - Free memory: 1 GB [14990] INFO NoPol - Maximum memory: 1 GB [14990] INFO NoPol - Total memory available to JVM: 1 GB [14990] INFO NoPol - Java version: null [14991] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [14991] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [15000] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_8] [15001] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [15001] INFO NoPol - Statement type: CONDITIONAL [15001] INFO NoPol - Args: [nopol_examples.nopol_example_8.NopolExampleTest] [15002] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_8], projectClasspath='[Ljava.net.URL;@69ab2d6a', projectTests=[nopol_examples.nopol_example_8.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [15002] INFO NoPol - Available processors (cores): 1 [15002] INFO NoPol - Free memory: 1 GB [15002] INFO NoPol - Maximum memory: 1 GB [15002] INFO NoPol - Total memory available to JVM: 1 GB [15002] INFO NoPol - Java version: null [15002] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [15002] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [15012] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_2] [15012] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [15013] INFO NoPol - Statement type: CONDITIONAL [15013] INFO NoPol - Args: [nopol_examples.nopol_example_2.NopolExampleTest] [15013] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_2], projectClasspath='[Ljava.net.URL;@505a8582', projectTests=[nopol_examples.nopol_example_2.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [15014] INFO NoPol - Available processors (cores): 1 [15014] INFO NoPol - Free memory: 1 GB [15014] INFO NoPol - Maximum memory: 1 GB [15014] INFO NoPol - Total memory available to JVM: 1 GB [15015] INFO NoPol - Java version: null [15015] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [15015] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [15026] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_5] [15026] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [15026] INFO NoPol - Statement type: PRE_THEN_COND [15026] INFO NoPol - Args: [nopol_examples.nopol_example_5.NopolExampleTest] [15026] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=PRE_THEN_COND, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_5], projectClasspath='[Ljava.net.URL;@28f8ce2e', projectTests=[nopol_examples.nopol_example_5.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [15027] INFO NoPol - Available processors (cores): 1 [15027] INFO NoPol - Free memory: 1 GB [15027] INFO NoPol - Maximum memory: 1 GB [15027] INFO NoPol - Total memory available to JVM: 1 GB [15027] INFO NoPol - Java version: null [15027] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [15027] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [15033] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_2] [15034] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [15034] INFO NoPol - Statement type: CONDITIONAL [15034] INFO NoPol - Args: [nopol_examples.nopol_example_2.NopolExampleTest] [15036] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_2], projectClasspath='[Ljava.net.URL;@2c0a3826', projectTests=[nopol_examples.nopol_example_2.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [15037] INFO NoPol - Available processors (cores): 1 [15037] INFO NoPol - Free memory: 1 GB [15037] INFO NoPol - Maximum memory: 1 GB [15038] INFO NoPol - Total memory available to JVM: 1 GB [15038] INFO NoPol - Java version: null [15039] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [15039] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [15058] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_1] [15058] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [15058] INFO NoPol - Statement type: COND_THEN_PRE [15058] INFO NoPol - Args: [nopol_examples.nopol_example_1.NopolExampleTest] [15058] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=COND_THEN_PRE, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_1], projectClasspath='[Ljava.net.URL;@311a09b2', projectTests=[nopol_examples.nopol_example_1.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [15058] INFO NoPol - Available processors (cores): 1 [15058] INFO NoPol - Free memory: 1 GB [15058] INFO NoPol - Maximum memory: 1 GB [15058] INFO NoPol - Total memory available to JVM: 1 GB [15058] INFO NoPol - Java version: null [15058] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [15058] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [15071] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_1] [15072] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [15072] INFO NoPol - Statement type: CONDITIONAL [15072] INFO NoPol - Args: [nopol_examples.nopol_example_1.NopolExampleTest] [15072] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_1], projectClasspath='[Ljava.net.URL;@6f80cf5', projectTests=[nopol_examples.nopol_example_1.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [15072] INFO NoPol - Available processors (cores): 1 [15072] INFO NoPol - Free memory: 1 GB [15072] INFO NoPol - Maximum memory: 1 GB [15072] INFO NoPol - Total memory available to JVM: 1 GB [15072] INFO NoPol - Java version: null [15072] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [15072] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [15088] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_1] [15088] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [15088] INFO NoPol - Statement type: PRE_THEN_COND [15088] INFO NoPol - Args: [nopol_examples.nopol_example_1.NopolExampleTest] [15088] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=PRE_THEN_COND, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_1], projectClasspath='[Ljava.net.URL;@114b2414', projectTests=[nopol_examples.nopol_example_1.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [15088] INFO NoPol - Available processors (cores): 1 [15088] INFO NoPol - Free memory: 1 GB [15088] INFO NoPol - Maximum memory: 1 GB [15088] INFO NoPol - Total memory available to JVM: 1 GB [15088] INFO NoPol - Java version: null [15088] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [15088] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin [15103] INFO NoPol - Source files: [../test-projects/src/main/java/nopol_examples/nopol_example_5] [15103] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [15103] INFO NoPol - Statement type: COND_THEN_PRE [15103] INFO NoPol - Args: [nopol_examples.nopol_example_5.NopolExampleTest] [15103] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=COND_THEN_PRE, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java/nopol_examples/nopol_example_5], projectClasspath='[Ljava.net.URL;@62cf86d6', projectTests=[nopol_examples.nopol_example_5.NopolExampleTest], complianceLevel=7, outputFolder=./, json=false} [15103] INFO NoPol - Available processors (cores): 1 [15103] INFO NoPol - Free memory: 1 GB [15103] INFO NoPol - Maximum memory: 1 GB [15103] INFO NoPol - Total memory available to JVM: 1 GB [15103] INFO NoPol - Java version: null [15103] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [15103] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin Tests run: 16, Failures: 0, Errors: 15, Skipped: 1, Time elapsed: 0.272 sec <<< FAILURE! testDynamoth(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.013 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.nopol.NopolTest.testDynamoth(NopolTest.java:285) example1Fix(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.025 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.TestUtility.setupAndRun(TestUtility.java:84) at fr.inria.lille.repair.nopol.NopolTest.example1Fix(NopolTest.java:33) example2Fix(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.019 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.TestUtility.setupAndRun(TestUtility.java:84) at fr.inria.lille.repair.nopol.NopolTest.example2Fix(NopolTest.java:45) example3Fix(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.025 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.TestUtility.setupAndRun(TestUtility.java:84) at fr.inria.lille.repair.nopol.NopolTest.example3Fix(NopolTest.java:57) example5Fix(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.022 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.TestUtility.setupAndRun(TestUtility.java:84) at fr.inria.lille.repair.nopol.NopolTest.example5Fix(NopolTest.java:84) example6Fix(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.018 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.TestUtility.setupAndRun(TestUtility.java:84) at fr.inria.lille.repair.nopol.NopolTest.example6Fix(NopolTest.java:97) example7Fix(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.019 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.TestUtility.setupAndRun(TestUtility.java:84) at fr.inria.lille.repair.nopol.NopolTest.example7Fix(NopolTest.java:110) example8Fix(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.013 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.TestUtility.setupAndRun(TestUtility.java:84) at fr.inria.lille.repair.nopol.NopolTest.example8Fix(NopolTest.java:147) testIgnoreTestCouldCreateOtherPatches(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.011 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.nopol.NopolTest.testIgnoreTestCouldCreateOtherPatches(NopolTest.java:266) preconditionThenConditionalPrecondition(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.01 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.TestUtility.setupAndRun(TestUtility.java:84) at fr.inria.lille.repair.nopol.NopolTest.preconditionThenConditionalPrecondition(NopolTest.java:219) testAPI(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.014 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.nopol.NopolTest.testAPI(NopolTest.java:243) conditionalThenPreconditionnal(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.018 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.TestUtility.setupAndRun(TestUtility.java:84) at fr.inria.lille.repair.nopol.NopolTest.conditionalThenPreconditionnal(NopolTest.java:183) testSkippingRegressionStepLeadToAPatch(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.015 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.nopol.NopolTest.testSkippingRegressionStepLeadToAPatch(NopolTest.java:233) preconditionThenConditional(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.018 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.TestUtility.setupAndRun(TestUtility.java:84) at fr.inria.lille.repair.nopol.NopolTest.preconditionThenConditional(NopolTest.java:165) conditionalThenPreconditionalUsePrecond(fr.inria.lille.repair.nopol.NopolTest) Time elapsed: 0.012 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.repair.TestUtility.patchFor(TestUtility.java:68) at fr.inria.lille.repair.TestUtility.setupAndRun(TestUtility.java:84) at fr.inria.lille.repair.nopol.NopolTest.conditionalThenPreconditionalUsePrecond(NopolTest.java:201) Running fr.inria.lille.commons.smt.SMTLibTest Tests run: 32, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0.375 sec Running fr.inria.lille.commons.smt.SMTLibEqualVisitorTest [15541] WARN SMTLibEqualVisitor - Empty implementation of fr.inria.lille.commons.synthesis.smt.SMTLibEqualVisitor.visit(IApplication) Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.053 sec Running fr.inria.lille.commons.smt.ComparisonTest Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec Running fr.inria.lille.commons.trace.ValuesCollectorTest Collected variables [aBoolean, reachableVariable] Expected variables [aBoolean, reachableVariable] Getters: {} Collected variables [index, word, infinitel_examples.infinitel_example_5.InfinitelExample.this.consumer] Expected variables [word, index, infinitel_examples.infinitel_example_5.InfinitelExample.this.consumer] Getters: {infinitel_examples.infinitel_example_5.InfinitelExample.this.consumer=[getConsumed, getSize]} Collected variables [nested.privateInstanceField, spoon.example.ClassToSpoon.privateStaticField, spoon.example.ClassToSpoon.this.protectedInstanceField, spoon.example.ClassToSpoon.this.publicInstanceField, spoon.example.ClassToSpoon.protectedStaticField, spoon.example.ClassToSpoon.NestedClassToSpoon.this.privateNestedInstanceField, comparable.privateNestedInstanceField, comparable.publicNestedInstanceField, nested, nested.protectedInstanceField, nested.publicInstanceField, comparable.protectedNestedInstanceField, spoon.example.ClassToSpoon.publicStaticField, spoon.example.ClassToSpoon.NestedClassToSpoon.this.protectedNestedInstanceField, spoon.example.ClassToSpoon.this.privateInstanceField, comparable, spoon.example.ClassToSpoon.NestedClassToSpoon.this.publicNestedInstanceField] Expected variables [comparable, nested, comparable.privateNestedInstanceField, comparable.publicNestedInstanceField, comparable.protectedNestedInstanceField, spoon.example.ClassToSpoon.protectedStaticField, spoon.example.ClassToSpoon.privateStaticField, spoon.example.ClassToSpoon.publicStaticField, nested.publicInstanceField, nested.protectedInstanceField, nested.privateInstanceField, spoon.example.ClassToSpoon.NestedClassToSpoon.this.protectedNestedInstanceField, spoon.example.ClassToSpoon.NestedClassToSpoon.this.publicNestedInstanceField, spoon.example.ClassToSpoon.NestedClassToSpoon.this.privateNestedInstanceField, spoon.example.ClassToSpoon.this.publicInstanceField, spoon.example.ClassToSpoon.this.privateInstanceField, spoon.example.ClassToSpoon.this.protectedInstanceField] Getters: {} Collected variables [nopol_examples.nopol_example_2.NopolExample.1.this.limit] Expected variables [nopol_examples.nopol_example_2.NopolExample.1.this.limit] Getters: {} Collected variables [a, b] Expected variables [a, b] Getters: {} Collected variables [11, (!(a < b)), 0, a, (a * b), b, -b, ((a * b) < 11), (a < b)] Expected variables [0, 11, a, b, -b, (a * b), (a < b), (!(a < b)), ((a * b) < 11)] Getters: {} Collected variables [spoon.example.ClassToSpoon.privateStaticField, nested2.protectedInstanceField, spoon.example.ClassToSpoon.this.protectedInstanceField, spoon.example.ClassToSpoon.this.publicInstanceField, spoon.example.ClassToSpoon.protectedStaticField, comparable.privateNestedInstanceField, nested2, comparable.publicNestedInstanceField, nested2.privateInstanceField, nested2.publicInstanceField, comparable.protectedNestedInstanceField, spoon.example.ClassToSpoon.publicStaticField, spoon.example.ClassToSpoon.this.privateInstanceField, comparable] Expected variables [comparable, nested2, comparable.privateNestedInstanceField, comparable.publicNestedInstanceField, comparable.protectedNestedInstanceField, spoon.example.ClassToSpoon.protectedStaticField, spoon.example.ClassToSpoon.privateStaticField, spoon.example.ClassToSpoon.publicStaticField, nested2.privateInstanceField, nested2.publicInstanceField, nested2.protectedInstanceField, spoon.example.ClassToSpoon.this.publicInstanceField, spoon.example.ClassToSpoon.this.privateInstanceField, spoon.example.ClassToSpoon.this.protectedInstanceField] Getters: {} Collected variables [aBoolean, nopol_examples.nopol_example_2.NopolExample.InnerNopolExample.this.fieldOfInnerClass, nopol_examples.nopol_example_2.NopolExample.this.fieldOfOuterClass] Expected variables [aBoolean, nopol_examples.nopol_example_2.NopolExample.InnerNopolExample.this.fieldOfInnerClass, nopol_examples.nopol_example_2.NopolExample.this.fieldOfOuterClass] Getters: {} Collected variables [index, nopol_examples.nopol_example_1.NopolExample.s, s, nopol_examples.nopol_example_1.NopolExample.this.index] Expected variables [s, index, nopol_examples.nopol_example_1.NopolExample.this.index, nopol_examples.nopol_example_1.NopolExample.s] Getters: {} Collected variables [a, b, nopol_examples.nopol_example_2.NopolExample.this.fieldOfOuterClass] Expected variables [b, a, nopol_examples.nopol_example_2.NopolExample.this.fieldOfOuterClass] Getters: {} Collected variables [a, tmp] Expected variables [a, tmp] Getters: {} Collected variables [a, nopol_examples.nopol_example_5.NopolExample.this.unreachableFromInnterStaticClass, r] Expected variables [r, a, nopol_examples.nopol_example_5.NopolExample.this.unreachableFromInnterStaticClass] Getters: {} Collected variables [a, b] Expected variables [a, b] Getters: {} Collected variables [stringParameter] Expected variables [stringParameter] Getters: {} Tests run: 26, Failures: 0, Errors: 0, Skipped: 4, Time elapsed: 29.223 sec Running fr.inria.lille.commons.synthesis.CodeSynthesisTest Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.694 sec Running fr.inria.lille.commons.synthesis.smt.constraint.ConstraintTest Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.112 sec Running fr.inria.lille.commons.synthesis.LocationVariableContainerTest Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec Running fr.inria.lille.commons.synthesis.LocationVariableTest Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec Running fr.inria.lille.commons.synthesis.OperatorTest Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec Running fr.inria.lille.evo.TestPatchEvo [45625] INFO NoPol - Source files: [../test-projects/src/main/java, ../test-projects/src/test/java, src/test/resources/evo/destSrcTest] [45626] INFO NoPol - Classpath: [file:/builds/workspace/nopol/nopol/../test-projects/target/classes/, file:/builds/workspace/nopol/nopol/../test-projects/target/test-classes/, file:/builds/workspace/nopol/nopol/src/test/resources/evo/destCpTest/, file:/builds/workspace/nopol/nopol/lib/junit-4.11.jar] [45627] INFO NoPol - Statement type: CONDITIONAL [45627] INFO NoPol - Args: [evo_examples.evo_example_1.EvoExampleTest] [45627] INFO NoPol - Config: Config{synthesisDepth=3, collectStaticMethods=true, collectStaticFields=false, collectLiterals=false, onlyOneSynthesisResult=true, sortExpressions=true, maxLineInvocationPerTest=250, timeoutMethodInvocation=2000, dataCollectionTimeoutInSecondForSynthesis=900, addWeight=0.19478, subWeight=0.04554, mulWeight=0.0102, divWeight=0.00613, andWeight=0.10597, orWeight=0.05708, eqWeight=0.22798, nEqWeight=0.0, lessEqWeight=0.0255, lessWeight=0.0947, methodCallWeight=0.1, fieldAccessWeight=0.08099, constantWeight=0.14232, variableWeight=0.05195, mode=REPAIR, type=CONDITIONAL, synthesis=SMT, oracle=ANGELIC, solver=Z3, solverPath='null', projectSources=[../test-projects/src/main/java, ../test-projects/src/test/java, src/test/resources/evo/destSrcTest], projectClasspath='[Ljava.net.URL;@3618486e', projectTests=[evo_examples.evo_example_1.EvoExampleTest], complianceLevel=7, outputFolder=./, json=false} [45628] INFO NoPol - Available processors (cores): 1 [45629] INFO NoPol - Free memory: 1 GB [45629] INFO NoPol - Maximum memory: 1 GB [45629] INFO NoPol - Total memory available to JVM: 1 GB [45630] INFO NoPol - Java version: null [45630] INFO NoPol - JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/ [45630] INFO NoPol - PATH: /usr/lib/jvm/java-17-openjdk-amd64//bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.033 sec <<< FAILURE! test(fr.inria.lille.evo.TestPatchEvo) Time elapsed: 0.033 sec <<< ERROR! java.lang.IllegalArgumentException: Unrecognized option : -1.7 at org.eclipse.jdt.internal.compiler.batch.Main.configure(Main.java:2860) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnits(JDTBasedSpoonCompiler.java:440) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildUnitsAndModel(JDTBasedSpoonCompiler.java:386) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.buildSources(JDTBasedSpoonCompiler.java:347) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:118) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.build(JDTBasedSpoonCompiler.java:101) at fr.inria.lille.commons.spoon.util.SpoonModelLibrary.modelFor(SpoonModelLibrary.java:53) at fr.inria.lille.commons.spoon.SpoonedFile.(SpoonedFile.java:60) at fr.inria.lille.commons.spoon.SpoonedProject.(SpoonedProject.java:17) at fr.inria.lille.repair.nopol.NoPol.(NoPol.java:108) at fr.inria.lille.evo.Main.NopolPatchGeneration(Main.java:253) at fr.inria.lille.evo.Main.tryAllTests(Main.java:293) at fr.inria.lille.evo.TestPatchEvo.test(TestPatchEvo.java:48) Running fr.inria.lille.diff.PatchGeneratorTest Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.883 sec Results : Tests in error: DumbLocalizerTest.testDumbLocalizerWithPatch3:62 » IllegalArgument Unrecognize... DumbLocalizerTest.testDumbLocalizer:39 » IllegalArgument Unrecognized option :... DumbLocalizerTest.testDumbLocalizerWithPatch:51 » IllegalArgument Unrecognized... CocospoonLocalizerTest.testOchiaiCoCoSpoonLocalizer:33 » IllegalArgument Unrec... CocospoonLocalizerTest.test2:83 » IllegalArgument Unrecognized option : -1.7 InfinitelTest.numberOfBreaksInExample3:124 » IllegalArgument Unrecognized opti... InfinitelTest.nestedLoopIsNotInfiniteInExample3:73 » IllegalArgument Unrecogni... InfinitelTest.theBreakMustBeForTheWhile:98 » IllegalArgument Unrecognized opti... InfinitelTest.bookkeepingInLoopsOfExample3:137 » IllegalArgument Unrecognized ... InfinitelTest.theReturnMustBeForTheWhile:111 » IllegalArgument Unrecognized op... InfinitelTest.infinitelExample2:208->checkInfinitel:233->infiniteLoopFixerForExample:270 » IllegalArgument InfinitelTest.infinitelExample4:166->infiniteLoopFixerForExample:270 » IllegalArgument InfinitelTest.infinitelExample5:223->checkInfinitel:233->infiniteLoopFixerForExample:270 » IllegalArgument InfinitelTest.numberOfReturnsInExample1:85 » IllegalArgument Unrecognized opti... DynamothCodeGenesisTest.test12:178->createSynthesizer:239 » IndexOutOfBounds I... DynamothCodeGenesisTest.test13:209->createSynthesizer:239 » IndexOutOfBounds I... DynamothCodeGenesisTest.test1:52->test:244->createSynthesizer:239 » IndexOutOfBounds DynamothCodeGenesisTest.test2:70->test:244->createSynthesizer:239 » IndexOutOfBounds DynamothCodeGenesisTest.test3:88->test:244->createSynthesizer:239 » IndexOutOfBounds DynamothCodeGenesisTest.test4:108->createSynthesizer:239 » IndexOutOfBounds In... DynamothCodeGenesisTest.test5:127->test:244->createSynthesizer:239 » IndexOutOfBounds DynamothCodeGenesisTest.test6:142->test:244->createSynthesizer:239 » IndexOutOfBounds DynamothCodeGenesisTest.test8:163->test:244->createSynthesizer:239 » IndexOutOfBounds ConditionnalInstrumenterTest.testConditionnalInstrumenter:43 » IllegalArgument ConditionnalInstrumenterTest.testConditionnalLoggingInstrumenter:128 » IllegalArgument NopolTest.testDynamoth:285 » IllegalArgument Unrecognized option : -1.7 NopolTest.example1Fix:33 » IllegalArgument Unrecognized option : -1.7 NopolTest.example2Fix:45 » IllegalArgument Unrecognized option : -1.7 NopolTest.example3Fix:57 » IllegalArgument Unrecognized option : -1.7 NopolTest.example5Fix:84 » IllegalArgument Unrecognized option : -1.7 NopolTest.example6Fix:97 » IllegalArgument Unrecognized option : -1.7 NopolTest.example7Fix:110 » IllegalArgument Unrecognized option : -1.7 NopolTest.example8Fix:147 » IllegalArgument Unrecognized option : -1.7 NopolTest.testIgnoreTestCouldCreateOtherPatches:266 » IllegalArgument Unrecogn... NopolTest.preconditionThenConditionalPrecondition:219 » IllegalArgument Unreco... NopolTest.testAPI:243 » IllegalArgument Unrecognized option : -1.7 NopolTest.conditionalThenPreconditionnal:183 » IllegalArgument Unrecognized op... NopolTest.testSkippingRegressionStepLeadToAPatch:233 » IllegalArgument Unrecog... NopolTest.preconditionThenConditional:165 » IllegalArgument Unrecognized optio... NopolTest.conditionalThenPreconditionalUsePrecond:201 » IllegalArgument Unreco... TestPatchEvo.test:48 » IllegalArgument Unrecognized option : -1.7 Tests run: 366, Failures: 0, Errors: 41, Skipped: 12 [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 01:15 min [INFO] Finished at: 2025-01-08T10:40:09+01:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.14.1:test (default-test) on project nopol: There are test failures. [ERROR] [ERROR] Please refer to /builds/workspace/nopol/nopol/target/surefire-reports for the individual test results. [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException Build step 'Execute shell' marked build as failure Recording test results [Checks API] No suitable checks publisher found. Sending e-mails to: spoon-devel@lists.gforge.inria.fr [WS-CLEANUP] Deleting project workspace... [WS-CLEANUP] Deferred wipeout is used... [WS-CLEANUP] done Finished: FAILURE