mirror of
https://github.com/ceph/ceph
synced 2024-12-12 22:46:21 +00:00
5666fd61d6
When you have a relative path you have to include the extension. Weird. Signed-off-by: Sage Weil <sage@redhat.com>
7 lines
208 B
Bash
Executable File
7 lines
208 B
Bash
Executable File
#!/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 nosetests -v $(dirname $0)/../../../src/test/pybind/test_cephfs.py
|
|
exit 0
|