@@ -2,6 +2,7 @@ __all__ = ["st_exchange_id.py", # draft 21
"st_compound.py",
"st_create_session.py",
"st_destroy_session.py",
+ "st_reclaim_complete.py",
"st_secinfo_no_name.py",
"st_secinfo.py",
"st_sequence.py",
new file mode 100644
@@ -0,0 +1,20 @@
+from st_create_session import create_session
+from nfs4_const import *
+from environment import check, fail
+import nfs4_ops as op
+import nfs4lib
+
+def testSupported(t, env):
+ """Do a simple RECLAIM_COMPLETE
+
+ FLAGS: reclaim_complete all
+ CODE: RECC1
+ """
+ c = env.c1.new_client(env.testname(t))
+ sess = c.create_session()
+
+ res = sess.compound([op.putrootfh(), op.reclaim_complete(TRUE)])
+ check(res)
+
+ res = sess.compound([op.reclaim_complete(FALSE)])
+ check(res)
Signed-off-by: Mi Jinlong <mijinlong@cn.fujitsu.com> --- nfs4.1/server41tests/__init__.py | 1 + nfs4.1/server41tests/st_reclaim_complete.py | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 0 deletions(-) create mode 100644 nfs4.1/server41tests/st_reclaim_complete.py