Skip to content

Commit

Permalink
[test] Java fut.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfusik committed Oct 25, 2023
1 parent 9c76e52 commit ef78f39
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
- uses: actions/checkout@main
- run: make -j3 host-diff
- run: make -j3 java/GenBase.java
- run: make -j3 host-diff-java
- run: make -j3 test-error FUT_HOST=cs
- run: make -j3 test-error FUT_HOST=java
- run: make -j3 test-error FUT_HOST=node
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,10 @@ host-diff:
diff -ruI "[0-9][Ee][-+][0-9]\|\.0" test/cpp test/cs
diff -ruI "[0-9][Ee][-+][0-9]" test/cs test/node

host-diff-java:
$(MAKE) test-transpile FUT_HOST=java
diff -ruI "[0-9][Ee][-+][0-9]\|\.0" test/cpp test/java

install: fut
$(INSTALL) -D $< $(DESTDIR)$(bindir)/fut

Expand All @@ -282,7 +286,7 @@ clean:
$(RM) fut fut.exe
$(RM) -r test/bin test/cpp test/cs test/node

.PHONY: all test test-c test-cpp test-cs test-d test-java test-js test-ts test-py test-swift test-cl test-error test-transpile coverage/output.xml coverage codecov host-diff install uninstall clean
.PHONY: all test test-c test-cpp test-cs test-d test-java test-js test-ts test-py test-swift test-cl test-error test-transpile coverage/output.xml coverage codecov host-diff host-diff-java install uninstall clean

.DELETE_ON_ERROR:

Expand Down
1 change: 1 addition & 0 deletions test/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/bin
/cpp
/cs
/java
/node
/node_modules

0 comments on commit ef78f39

Please sign in to comment.