mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
57 lines
3.0 KiB
Python
Executable File
57 lines
3.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Copyright (C) 2016 Kaspar Schleiser <kaspar@schleiser.de>
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
|
|
import sys
|
|
from testrunner import run
|
|
|
|
|
|
def testfunc(child):
|
|
child.expect_exact(u"Calling test_sock_udp_create__EADDRINUSE()")
|
|
child.expect_exact(u"Calling test_sock_udp_create__EAFNOSUPPORT()")
|
|
child.expect_exact(u"Calling test_sock_udp_create__EINVAL_addr()")
|
|
child.expect_exact(u"Calling test_sock_udp_create__EINVAL_netif()")
|
|
child.expect_exact(u"Calling test_sock_udp_create__no_endpoints()")
|
|
child.expect_exact(u"Calling test_sock_udp_create__only_local()")
|
|
child.expect_exact(u"Calling test_sock_udp_create__only_local_reuse_ep()")
|
|
child.expect_exact(u"Calling test_sock_udp_create__only_remote()")
|
|
child.expect_exact(u"Calling test_sock_udp_create__full()")
|
|
child.expect_exact(u"Calling test_sock_udp_recv__EADDRNOTAVAIL()")
|
|
child.expect_exact(u"Calling test_sock_udp_recv__EAGAIN()")
|
|
child.expect_exact(u"Calling test_sock_udp_recv__ENOBUFS()")
|
|
child.expect_exact(u"Calling test_sock_udp_recv__EPROTO()")
|
|
child.expect_exact(u"Calling test_sock_udp_recv__ETIMEDOUT()")
|
|
child.expect_exact(u" * Calling sock_udp_recv()")
|
|
child.expect(r" \* \(timed out with timeout \d+\)")
|
|
child.expect_exact(u"Calling test_sock_udp_recv__socketed()")
|
|
child.expect_exact(u"Calling test_sock_udp_recv__socketed_with_remote()")
|
|
child.expect_exact(u"Calling test_sock_udp_recv__unsocketed()")
|
|
child.expect_exact(u"Calling test_sock_udp_recv__unsocketed_with_remote()")
|
|
child.expect_exact(u"Calling test_sock_udp_recv__with_timeout()")
|
|
child.expect_exact(u"Calling test_sock_udp_recv__non_blocking()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__EAFNOSUPPORT()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__EINVAL_addr()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__EINVAL_netif()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__EINVAL_port()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__ENOTCONN()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__socketed_no_local_no_netif()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__socketed_no_netif()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__socketed_no_local()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__socketed()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__socketed_other_remote()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__unsocketed_no_local_no_netif()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__unsocketed_no_netif()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__unsocketed_no_local()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__unsocketed()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__no_sock_no_netif()")
|
|
child.expect_exact(u"Calling test_sock_udp_send__no_sock()")
|
|
child.expect_exact(u"ALL TESTS SUCCESSFUL")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(run(testfunc))
|