-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
47 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule circle-newlib
updated
2 files
+50 −15 | libgloss/circle/socket.cpp | |
+1 −0 | newlib/libc/sys/circle/include/netinet/in.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
echo "Waiting for QEMU to open socket 5000..." | ||
|
||
while ! nc -z localhost 5000; do | ||
sleep 0.1 # wait for 1/10 of the second before check again | ||
done | ||
|
||
echo "Socket test" | nc -v localhost 5000 | ||
|
||
echo "Socket test completed" |