Since do_ceph_mount is used to overload the mount function for
fscrypt and regular tests, ensure overloaded function is used.
This wasn't the case before, and testing CaseInsensitive was
not done properly on fscrypt.
Fixes: https://tracker.ceph.com/issues/74934
Signed-off-by: Christopher Hoffman <choffman@redhat.com>
ASSERT_EQ(ceph_create(&cmount, NULL), 0);
ASSERT_EQ(ceph_conf_read_file(cmount, NULL), 0);
ASSERT_EQ(0, ceph_conf_parse_env(cmount, NULL));
- ASSERT_EQ(ceph_mount(cmount, NULL), 0);
+ ASSERT_EQ(do_ceph_mount(cmount, NULL), 0);
static const char many_path[] = "/ManyNestedDirsCaseInsensitive/A/a/a/a/a/b/B/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/Aa";
const filepath mfp = filepath(many_path);