On Wed, Dec 16, 2020 at 04:35:09PM -0800, Tom Haynes wrote: > Signed-off-by: Tom Haynes <loghyr@xxxxxxxxxxxxxxx> > --- > nfs4.1/server41tests/st_sequence.py | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/nfs4.1/server41tests/st_sequence.py b/nfs4.1/server41tests/st_sequence.py > index 9be1096..969deb8 100644 > --- a/nfs4.1/server41tests/st_sequence.py > +++ b/nfs4.1/server41tests/st_sequence.py > @@ -225,6 +225,7 @@ def testReplayCache007(t, env): > check(res) > fh = res.resarray[-1].object > stateid = res.resarray[-2].stateid > + > ops = env.home + [op.savefh(),\ > op.rename(b"%s_1" % env.testname(t), b"%s_2" % env.testname(t))] > res1 = sess1.compound(ops, cache_this=False) > @@ -233,6 +234,10 @@ def testReplayCache007(t, env): > check(res2, [NFS4_OK, NFS4ERR_RETRY_UNCACHED_REP]) > close_file(sess1, fh, stateid=stateid) > > + # Cleanup > + res = sess1.compound([op.putfh(fh), op.close(0, stateid)]) > + check(res) > + This is giving me: SEQ10b st_sequence.testReplayCache007 : FAILURE OP_CLOSE should return NFS4_OK, instead got NFS4ERR_BAD_STATEID probably because the file was already closed just above. I'm not sure whta was intended here. Reverting for now. --b. > def testOpNotInSession(t, env): > """Operations other than SEQUENCE, BIND_CONN_TO_SESSION, EXCHANGE_ID, > CREATE_SESSION, and DESTROY_SESSION, MUST NOT appear as the > -- > 2.26.2