Skip to content

Commit

Permalink
[CI] Fix futex hang
Browse files Browse the repository at this point in the history
  • Loading branch information
ClawSeven committed Jul 10, 2024
1 parent c901ec5 commit 2cece41
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion demos/netty_ut/run_netty_ut_jdk8.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ run_netty_ut() {
-cp /usr/lib/netty/netty-testsuite-4.1.51.Final.jar:/usr/lib/netty/netty-all-4.1.51.Final.jar:/usr/lib/netty/xz-1.5.jar:/usr/lib/netty/hamcrest-library-1.3.jar:/usr/lib/netty/logback-classic-1.1.7.jar \
--scan-class-path > netty-test-heap512m.log || true
cat netty-test-heap512m.log
cat netty-test-heap512m.log | grep "190 tests successful"
}

run_netty_ut
2 changes: 1 addition & 1 deletion src/sgxenv.mk
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ ifeq ($(SGX_MODE), HW)
else ifeq ($(SGX_MODE), HYPER)
SGX_LFLAGS_U := $(SGX_COMMON_CFLAGS) -lpthread -L$(SGX_LIBRARY_PATH) -Wl,-Bstatic -lsgx_urts_hyper -Wl,-Bdynamic -lsgx_uae_service_hyper
else
SGX_LFLAGS_U := $(SGX_COMMON_CFLAGS) -lpthread -L$(SGX_LIBRARY_PATH) -Wl,-Bstatic -lsgx_urts_sim -Wl,-Bdynamic -lsgx_uae_service_sim
SGX_LFLAGS_U := $(SGX_COMMON_CFLAGS) -lpthread -L$(SGX_LIBRARY_PATH) -Wl,-Bstatic -lsgx_urts_sim_with_se_event -Wl,-Bdynamic -lsgx_uae_service_sim
endif

#
Expand Down

0 comments on commit 2cece41

Please sign in to comment.