Commit 9d575887 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 0859188c
...@@ -9,4 +9,9 @@ fi ...@@ -9,4 +9,9 @@ fi
# executed under qemu-runlinux # executed under qemu-runlinux
#export WENDELIN_CORE_WCFS_OPTIONS="-d -alsologtostderr -v=1" #export WENDELIN_CORE_WCFS_OPTIONS="-d -alsologtostderr -v=1"
py.test -vsx -k test_wcfs py.test \
`# diable cache & warnings that it cannot be updated since fs under qrun is read-only` \
`# https://stackoverflow.com/a/47893653/9456786` \
-p no:cacheprovider \
\
-vsx -k test_wcfs
...@@ -618,8 +618,6 @@ def test_wcfs(): ...@@ -618,8 +618,6 @@ def test_wcfs():
defer(done.close) defer(done.close)
pinv = w.expectPin([(zf, 2, at1), (zf, 3, at0)]) pinv = w.expectPin([(zf, 2, at1), (zf, 3, at0)])
#pinv = w.expectPin({zf: [(2, at1), (3, at0)]}) XXX <- this way better? (sugar) #pinv = w.expectPin({zf: [(2, at1), (3, at0)]}) XXX <- this way better? (sugar)
#print('C: bbb')
#print('C: ccc', pinv)
for p in pinv: for p in pinv:
p.reply(b"ack") p.reply(b"ack")
go(_) go(_)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment