blob: 74dbfa3218e9a0741b5fc8c03034744ff1d27239 (
plain)
1
2
3
4
5
6
|
#!/bin/sh -ex
# Running as root because the filesystem root directory will be
# owned by uid 0, and that's where we're writing.
sudo python3 -m nose -v $(dirname $0)/../../../src/test/pybind/test_cephfs.py
exit 0
|