diff options
| author | Garrett D'Amore <garrett@damore.org> | 2016-12-23 12:15:40 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2016-12-23 12:15:40 -0800 |
| commit | 667262f214441c66bcaeeae3b1b2ecbecf4aaf64 (patch) | |
| tree | 9912966cf831c39f45a44eb0fd88fa1b92e35936 /tests/sock.c | |
| parent | a12baf41fb17ef51a8b1d0c82e31113454c5beae (diff) | |
| download | nng-667262f214441c66bcaeeae3b1b2ecbecf4aaf64.tar.gz nng-667262f214441c66bcaeeae3b1b2ecbecf4aaf64.tar.bz2 nng-667262f214441c66bcaeeae3b1b2ecbecf4aaf64.zip | |
Fix for incorrect nni_usleep(), found with newly created platform tests.
Diffstat (limited to 'tests/sock.c')
| -rw-r--r-- | tests/sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sock.c b/tests/sock.c index 4bdc684b..81361f8b 100644 --- a/tests/sock.c +++ b/tests/sock.c @@ -11,7 +11,6 @@ #include "nng.h" TestMain("Socket Operations", { - ConveySetVerbose(); Convey("We are able to open a PAIR socket", { int rv; nng_socket *sock = NULL; @@ -34,6 +33,7 @@ TestMain("Socket Operations", { int64_t when = 500000; uint64_t now; + // We cheat to get access to the core's clock. extern uint64_t nni_clock(void); now = nni_clock(); |
