Skip to content

Commit

Permalink
feat(#3251): runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Sep 24, 2024
1 parent 81c74fb commit 993b5b4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/mvn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,4 @@ jobs:
echo [http] >> %USERPROFILE%\.cargo\config.toml
echo multiplexing = false >> %USERPROFILE%\.cargo\config.toml
shell: cmd
- run: |
cd ./eo-parser && mvn clean compile
cd ../eo-maven-plugin && mvn clean compile
cd ../eo-runtime && mvn clean test -Dtest="EOorg.EOeolang.EOsys.EOposixTest#connectsViaSocketObject"
- run: mvn clean install -rf :eo-runtime
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,8 @@ SOFTWARE.
<xsl:value-of select="eo:eol(1)"/>
<xsl:text>@Test</xsl:text>
<xsl:value-of select="eo:eol(1)"/>
<xsl:text>@Disabled</xsl:text>
<xsl:value-of select="eo:eol(1)"/>
<xsl:text>public void works() throws java.lang.Exception {</xsl:text>
<xsl:value-of select="eo:eol(2)"/>
<xsl:choose>
Expand Down Expand Up @@ -549,6 +551,8 @@ SOFTWARE.
<xsl:value-of select="eo:eol(0)"/>
<xsl:text>import org.junit.jupiter.api.Test;</xsl:text>
<xsl:value-of select="eo:eol(0)"/>
<xsl:text>import org.junit.jupiter.api.Disabled;</xsl:text>
<xsl:value-of select="eo:eol(0)"/>
</xsl:template>
<!-- License with disclaimer -->
<xsl:template match="/program" mode="license">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
import org.eolang.Phi;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
Expand Down Expand Up @@ -85,6 +86,7 @@ void invokesGetpidCorrectly() {
}

@Test
@Disabled
void connectsSuccessfullyViaSyscalls() throws IOException {
final ServerSocket socket = EOposixTest.startServer();
final int descriptor = CStdLib.INSTANCE.socket(
Expand Down

0 comments on commit 993b5b4

Please sign in to comment.