Skip to content

Commit 3a47923

Browse files
Compile janalyzer/too-many-args test sources
Add pom.xml for compilation, move sources remove obsolete pre-compiled class files.
1 parent 2447567 commit 3a47923

File tree

6 files changed

+32
-1
lines changed

6 files changed

+32
-1
lines changed

jbmc/regression/janalyzer/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
<modules>
1818
<module>string-initializer</module>
19+
<module>too-many-args</module>
1920
</modules>
2021

2122
</project>
-228 Bytes
Binary file not shown.
-228 Bytes
Binary file not shown.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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.janalyzer.too-many-args</artifactId>
8+
<version>1.0-SNAPSHOT</version>
9+
10+
<parent>
11+
<groupId>org.cprover.regression</groupId>
12+
<artifactId>regression.janalyzer</artifactId>
13+
<version>1.0-SNAPSHOT</version>
14+
</parent>
15+
16+
<build>
17+
<plugins>
18+
<plugin>
19+
<artifactId>maven-jar-plugin</artifactId>
20+
<executions>
21+
<execution>
22+
<id>default-jar</id>
23+
<phase>none</phase>
24+
</execution>
25+
</executions>
26+
</plugin>
27+
</plugins>
28+
</build>
29+
30+
</project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
A
3-
B
3+
B -cp target/classes
44
Please give exactly one class name, and/or use -jar jarfile or --gb goto-binary
55
^EXIT=1$
66
^SIGNAL=0$

0 commit comments

Comments
 (0)