Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rumpnet_net now needs rumpdev for config_cfdriver_attach. #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/dynamic/dynamic.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ main()
int s;

/* use this as a "do we have dynamic libs" test */
if (dlopen("librumpvfs.so", RTLD_LAZY | RTLD_GLOBAL) == NULL)
return 37;
if (dlopen("librumpdev.so", RTLD_LAZY | RTLD_GLOBAL) == NULL)
return 37;
if (dlopen("librumpnet.so", RTLD_LAZY | RTLD_GLOBAL) == NULL)
return 37;

Expand Down
2 changes: 1 addition & 1 deletion tests/nettest_routed/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PROG= nettest_routed

RUMPLIBS= -lrumpnet_shmif -lrumpnet_config -lrumpnet_netinet -lrumpnet_net
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser
RUMPLIBS+=-lrumpnet -lrumpdev -lrumpvfs ${RUMPKERN_SYSPROXY} -lrump -lrumpuser

CLEANFILES+= busmem1 busmem2

Expand Down
2 changes: 1 addition & 1 deletion tests/nettest_routed6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PROG= nettest_routed6
SRCS= nettest_routed.c

RUMPLIBS= -lrumpnet_shmif -lrumpnet_config -lrumpnet_netinet6 -lrumpnet_net
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser
RUMPLIBS+=-lrumpnet -lrumpdev -lrumpvfs ${RUMPKERN_SYSPROXY} -lrump -lrumpuser

CLEANFILES+= busmem1 busmem2

Expand Down
2 changes: 1 addition & 1 deletion tests/nettest_simple/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PROG= nettest_simple

RUMPLIBS= -lrumpnet_shmif -lrumpnet_config -lrumpnet_netinet -lrumpnet_net
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser
RUMPLIBS+=-lrumpnet -lrumpdev -lrumpvfs ${RUMPKERN_SYSPROXY} -lrump -lrumpuser

CLEANFILES+= busmem

Expand Down
2 changes: 1 addition & 1 deletion tests/nettest_simple6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PROG= nettest_simple6
SRCS= nettest_simple.c

RUMPLIBS= -lrumpnet_shmif -lrumpnet_config -lrumpnet_netinet6 -lrumpnet_net
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser
RUMPLIBS+=-lrumpnet -lrumpdev -lrumpvfs ${RUMPKERN_SYSPROXY} -lrump -lrumpuser

CLEANFILES+= busmem

Expand Down