Skip to content

Commit c8fe05c

Browse files
Compile jbmc/assume1 test sources
Add pom.xml for compilation, move sources, remove obsolete pre-compiled class files.
1 parent 3de1908 commit c8fe05c

File tree

6 files changed

+51
-1
lines changed

6 files changed

+51
-1
lines changed
-660 Bytes
Binary file not shown.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>org.cprover.regression</groupId>
7+
<artifactId>regression.jbmc.assume1</artifactId>
8+
<version>1.0-SNAPSHOT</version>
9+
10+
<parent>
11+
<groupId>org.cprover.regression</groupId>
12+
<artifactId>regression.jbmc</artifactId>
13+
<version>1.0-SNAPSHOT</version>
14+
</parent>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>org.cprover.util</groupId>
19+
<artifactId>cprover-api</artifactId>
20+
</dependency>
21+
</dependencies>
22+
23+
<build>
24+
<plugins>
25+
<plugin>
26+
<artifactId>maven-jar-plugin</artifactId>
27+
<executions>
28+
<execution>
29+
<id>default-jar</id>
30+
<phase>none</phase>
31+
</execution>
32+
</executions>
33+
</plugin>
34+
</plugins>
35+
</build>
36+
37+
</project>
File renamed without changes.

jbmc/regression/jbmc/assume1/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Assume1
3-
--function Assume1.foo
3+
--function Assume1.foo -cp target/classes
44
^EXIT=0$
55
^SIGNAL=0$
66
^VERIFICATION SUCCESSFUL$

jbmc/regression/jbmc/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
<module>assert7</module>
5050
<module>assert-no-exceptions-thrown</module>
5151
<module>assertion_error_constructors</module>
52+
<module>assume1</module>
5253
<module>classpath-jar-load-whole-jar</module>
5354
</modules>
5455

jbmc/regression/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,18 @@
2020
<module>book-examples</module>
2121
</modules>
2222

23+
<dependencyManagement>
24+
<dependencies>
25+
<dependency>
26+
<groupId>org.cprover.util</groupId>
27+
<artifactId>cprover-api</artifactId>
28+
<version>1.0.0</version>
29+
<scope>system</scope>
30+
<systemPath>${maven.multiModuleProjectDirectory}/../lib/java-models-library/target/cprover-api.jar</systemPath>
31+
</dependency>
32+
</dependencies>
33+
</dependencyManagement>
34+
2335
<build>
2436
<pluginManagement>
2537
<plugins>

0 commit comments

Comments
 (0)