Skip to content
Snippets Groups Projects
Unverified Commit 94d6bafc authored by Alexandre Abadie's avatar Alexandre Abadie Committed by GitHub
Browse files

Merge pull request #10831 from cladmi/pr/tests/adapt_tests_auto_lookup

tests/posix_semaphore: private sub functions for tests libs
parents 8b4b2870 6e7fa9e9
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ import sys ...@@ -10,7 +10,7 @@ import sys
from testrunner import run from testrunner import run
def test1(term): def _test1(term):
term.expect_exact("######################### TEST1:") term.expect_exact("######################### TEST1:")
term.expect_exact("first: sem_init") term.expect_exact("first: sem_init")
term.expect_exact("first: thread create") term.expect_exact("first: thread create")
...@@ -33,7 +33,7 @@ def test1(term): ...@@ -33,7 +33,7 @@ def test1(term):
term.expect_exact("first: end") term.expect_exact("first: end")
def test2(term): def _test2(term):
term.expect_exact("######################### TEST2:") term.expect_exact("######################### TEST2:")
term.expect_exact("first: sem_init") term.expect_exact("first: sem_init")
term.expect_exact("first: thread create: 5") term.expect_exact("first: thread create: 5")
...@@ -64,7 +64,7 @@ def test2(term): ...@@ -64,7 +64,7 @@ def test2(term):
term.expect_exact("Back in main thread.") term.expect_exact("Back in main thread.")
def test3(term): def _test3(term):
term.expect_exact("######################### TEST3:") term.expect_exact("######################### TEST3:")
term.expect_exact("first: sem_init s1") term.expect_exact("first: sem_init s1")
term.expect_exact("first: sem_init s2") term.expect_exact("first: sem_init s2")
...@@ -81,7 +81,7 @@ def test3(term): ...@@ -81,7 +81,7 @@ def test3(term):
term.expect_exact("Thread 2 woke up after waiting for s1.") term.expect_exact("Thread 2 woke up after waiting for s1.")
def test4(term): def _test4(term):
term.expect_exact("######################### TEST4:") term.expect_exact("######################### TEST4:")
term.expect_exact("first: sem_init s1") term.expect_exact("first: sem_init s1")
term.expect_exact("first: wait 1 sec for s1") term.expect_exact("first: wait 1 sec for s1")
...@@ -90,10 +90,10 @@ def test4(term): ...@@ -90,10 +90,10 @@ def test4(term):
def testfunc(child): def testfunc(child):
test1(child) _test1(child)
test2(child) _test2(child)
test3(child) _test3(child)
test4(child) _test4(child)
child.expect("######################### DONE") child.expect("######################### DONE")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment