Skip to content

Commit

Permalink
Fix test execution #2
Browse files Browse the repository at this point in the history
  • Loading branch information
siy committed Jun 6, 2022
1 parent 4ac1973 commit 79a6170
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/java-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
java-version: '17'
cache: 'maven'
- name: Build with Maven
run: sudo -E bash -c "ulimit -l 65536 && ulimit -a && mvn --no-transfer-progress --batch-mode --update-snapshots package"
run: sudo -E bash -c "ulimit -l 65536 && ulimit -a && MAVEN_OPTS=--enable-preview mvn --no-transfer-progress --batch-mode --update-snapshots package"
2 changes: 1 addition & 1 deletion liburing
Submodule liburing updated 88 files
+1 −1 .github/workflows/build.yml
+125 −1 .gitignore
+1 −6 Makefile
+0 −1 Makefile.common
+0 −6 SECURITY.md
+1 −3 configure
+8 −9 man/io_uring.7
+4 −4 man/io_uring_cq_advance.3
+4 −4 man/io_uring_cqe_seen.3
+1 −1 man/io_uring_opcode_supported.3
+1 −1 man/io_uring_peek_cqe.3
+2 −2 man/io_uring_prep_accept.3
+1 −1 man/io_uring_prep_cancel.3
+2 −2 man/io_uring_prep_files_update.3
+8 −1 man/io_uring_prep_msg_ring.3
+2 −2 man/io_uring_prep_provide_buffers.3
+4 −5 man/io_uring_prep_read_fixed.3
+1 −1 man/io_uring_prep_splice.3
+2 −2 man/io_uring_prep_tee.3
+2 −2 man/io_uring_prep_timeout.3
+1 −1 man/io_uring_prep_timeout_update.3
+1 −1 man/io_uring_prep_write.3
+4 −4 man/io_uring_prep_write_fixed.3
+1 −1 man/io_uring_prep_writev.3
+1 −1 man/io_uring_prep_writev2.3
+3 −26 man/io_uring_queue_init.3
+1 −7 man/io_uring_register.2
+2 −2 man/io_uring_register_buffers.3
+0 −49 man/io_uring_register_eventfd.3
+0 −1 man/io_uring_register_eventfd_async.3
+3 −4 man/io_uring_register_ring_fd.3
+0 −19 man/io_uring_setup.2
+1 −1 man/io_uring_sqe_set_flags.3
+1 −1 man/io_uring_submit_and_wait_timeout.3
+0 −1 man/io_uring_unregister_eventfd.3
+2 −2 src/Makefile
+2 −9 src/arch/syscall-defs.h
+17 −0 src/arch/x86/lib.h
+6 −146 src/arch/x86/syscall.h
+2 −1 src/include/liburing/io_uring.h
+0 −1 src/int_flags.h
+0 −2 src/queue.c
+1 −1 test/232c93d07b74-test.c
+2 −1 test/35fa71a030ca-test.c
+0 −0 test/500f9fbadef8-test.c
+0 −0 test/7ad0e4b2f83c-test.c
+0 −0 test/8a9973408177-test.c
+0 −0 test/917257daa0fe-test.c
+43 −38 test/Makefile
+0 −0 test/a0908ae19763-test.c
+0 −0 test/a4c0b3decb33-test.c
+1 −1 test/accept-test.c
+70 −217 test/accept.c
+0 −0 test/b19062a56726-test.c
+0 −0 test/b5837bd5311d-test.c
+0 −0 test/ce593a6c480a-test.c
+0 −0 test/d4ae271dfaae-test.c
+0 −0 test/d77a67ed5f27-test.c
+8 −20 test/defer.c
+2 −11 test/double-poll-crash.c
+0 −1 test/drop-submit.c
+0 −0 test/eeed8b54e0df-test.c
+0 −0 test/fc2a85cb02ef-test.c
+0 −95 test/file-register.c
+0 −160 test/fixed-reuse.c
+2 −12 test/helpers.c
+0 −6 test/helpers.h
+3 −3 test/link.c
+8 −0 test/msg-ring.c
+2 −2 test/multicqes_drain.c
+0 −188 test/open-direct-link.c
+3 −3 test/openat2.c
+2 −2 test/pollfree.c
+0 −400 test/recv-msgall-stream.c
+0 −267 test/recv-msgall.c
+0 −84 test/ring-leak.c
+0 −11 test/runtests-quiet.sh
+1 −1 test/runtests.sh
+1 −2 test/rw_merge_test.c
+2 −2 test/send_recv.c
+2 −2 test/send_recvmsg.c
+1 −1 test/sq-poll-dup.c
+1 −1 test/sq-poll-share.c
+1 −1 test/statx.c
+2 −4 test/submit-link-fail.c
+2 −0 test/submit-reuse.c
+3 −3 test/timeout.c
+0 −60 test/tty-write-dpoll.c

0 comments on commit 79a6170

Please sign in to comment.