Skip to content

Commit

Permalink
feat(objectionary#627): print 'bytecode-to-eo' integration test class…
Browse files Browse the repository at this point in the history
…es to PHI expressions
  • Loading branch information
volodya-lombrozo committed Jul 5, 2024
1 parent c641cf3 commit 1033d66
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/it/bytecode-to-eo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Bytecode To Eo Integration Test

If you need to run only this test, use the following command:

```shell
mvn clean integration-test -Dinvoker.test=bytecode-to-eo -DskipTests
```
20 changes: 19 additions & 1 deletion src/it/bytecode-to-eo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SOFTWARE.
<packaging>jar</packaging>
<description>Integration test.
If you need to run only this test, use the following command:
"mvn clean integration-test invoker:run -Dinvoker.test=bytecode-to-eo -DskipTests"
"mvn clean integration-test -Dinvoker.test=bytecode-to-eo -DskipTests"
</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -93,6 +93,24 @@ SOFTWARE.
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<plugin>
<groupId>org.eolang</groupId>
<artifactId>eo-maven-plugin</artifactId>
<version>0.38.4</version>
<executions>
<execution>
<id>convert-xmir-to-eo</id>
<phase>process-classes</phase>
<goals>
<goal>xmir-to-phi</goal>
</goals>
<configuration>
<phiInputDir>${project.build.directory}/generated-sources/jeo-xmir</phiInputDir>
<phiOutputDir>${project.build.directory}/generated-sources/jeo-eo</phiOutputDir>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 1033d66

Please sign in to comment.