From Fedora Project Wiki
No edit summary |
|||
Line 8: | Line 8: | ||
{{{actions| | {{{actions| | ||
# You can run both NFS server and client on the same system or use different systems. Configure the server. | # You can run both NFS server and client on the same system or use different systems. Configure the server. | ||
<pre>cp /etc/exports /etc/exports.orig | #: <pre> | ||
#: cp /etc/exports /etc/exports.orig | |||
#: echo '/nfs *(rw,insecure,no_root_squash)' >/etc/exports | |||
#: mkdir /nfs | |||
#: service nfs restart | |||
# | #: </pre> | ||
<pre>git clone git://fedorapeople.org/~steved/cthon04 | # Run the connectathon testsuite from the client. | ||
#: <pre> | |||
#: git clone git://fedorapeople.org/~steved/cthon04 | |||
#: cd cthon04 | |||
}}} | #: make | ||
#: ./runcthon --server <server IP> --serverdir /nfs | |||
#: <pre> | |||
# }}} | |||
= Expected Results = | = Expected Results = | ||
Line 26: | Line 29: | ||
</noinclude> | </noinclude> | ||
{{{results| | {{{results| | ||
# Step #1 completes without error | # Step #1 completes without error. | ||
# The | # The testsuite finishes without error; no nfs*.error files in /tmp. | ||
# | # }}} | ||
<noinclude> | <noinclude> |
Revision as of 11:20, 27 January 2010
Description
This test case is to run connectathon test suite on a NFSv4 root
How to test
Be as specific as required for the target audience.
- You can run both NFS server and client on the same system or use different systems. Configure the server.
- cp /etc/exports /etc/exports.orig
- echo '/nfs *(rw,insecure,no_root_squash)' >/etc/exports
- mkdir /nfs
- service nfs restart
- Run the connectathon testsuite from the client.
- git clone git://fedorapeople.org/~steved/cthon04
- cd cthon04
- make
- ./runcthon --server <server IP> --serverdir /nfs
#
Expected Results
The following must be true to consider this a successful test run. Be brief ... but explicit. # Step #1 completes without error. # The testsuite finishes without error; no nfs*.error files in /tmp. #