• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/apr-32/apr/apr/test/

Lines Matching refs:dstpath

41     char *dstpath = NULL;
44 rv = apr_filepath_merge(&dstpath, ABS_ROOT"foo", ABS_ROOT"bar", APR_FILEPATH_NOTABOVEROOT,
48 ABTS_PTR_EQUAL(tc, NULL, dstpath);
55 char *dstpath = NULL;
57 rv = apr_filepath_merge(&dstpath, ABS_ROOT"foo", ABS_ROOT"foo/bar",
59 ABTS_PTR_NOTNULL(tc, dstpath);
61 ABTS_STR_EQUAL(tc, ABS_ROOT"foo/bar", dstpath);
67 char *dstpath = NULL;
69 rv = apr_filepath_merge(&dstpath, ABS_ROOT"foo", ABS_ROOT"foo/bar", 0, p);
70 ABTS_PTR_NOTNULL(tc, dstpath);
72 ABTS_STR_EQUAL(tc, ABS_ROOT"foo/bar", dstpath);
78 char *dstpath = NULL;
80 rv = apr_filepath_merge(&dstpath, ABS_ROOT"foo/bar", "../baz", 0, p);
81 ABTS_PTR_NOTNULL(tc, dstpath);
83 ABTS_STR_EQUAL(tc, ABS_ROOT"foo/baz", dstpath);
85 rv = apr_filepath_merge(&dstpath, "", "../test", 0, p);
87 ABTS_STR_EQUAL(tc, "../test", dstpath);
94 rv = apr_filepath_merge(&dstpath, "", "../test", APR_FILEPATH_TRUENAME, p);
96 ABTS_STR_EQUAL(tc, "../test", dstpath);
102 char *dstpath = NULL;
104 rv = apr_filepath_merge(&dstpath, "",
106 ABTS_PTR_NOTNULL(tc, dstpath);
108 ABTS_STR_EQUAL(tc, "../../..", dstpath);
110 rv = apr_filepath_merge(&dstpath, "",
112 ABTS_PTR_NOTNULL(tc, dstpath);
114 ABTS_STR_EQUAL(tc, "../../../", dstpath);
120 char *dstpath = NULL;
122 rv = apr_filepath_merge(&dstpath, ABS_ROOT"foo/bar", "../bar/baz", 0, p);
123 ABTS_PTR_NOTNULL(tc, dstpath);
125 ABTS_STR_EQUAL(tc, ABS_ROOT"foo/bar/baz", dstpath);
131 char *dstpath = NULL;
133 rv = apr_filepath_merge(&dstpath, ABS_ROOT"foo/bar", "../baz",
135 ABTS_PTR_NOTNULL(tc, dstpath);
137 ABTS_STR_EQUAL(tc, ABS_ROOT"foo/baz", dstpath);
143 char *dstpath = NULL;
146 rv = apr_filepath_merge(&dstpath, "foo/bar", "../baz",
150 ABTS_PTR_EQUAL(tc, NULL, dstpath);
158 char *dstpath = NULL;
161 rv = apr_filepath_merge(&dstpath, ABS_ROOT"foo/bar", "../baz",
165 ABTS_PTR_EQUAL(tc, NULL, dstpath);
173 char *dstpath = NULL;
175 rv = apr_filepath_merge(&dstpath, "foo/bar", "../baz",
178 ABTS_PTR_NOTNULL(tc, dstpath);
180 ABTS_STR_EQUAL(tc, "foo/baz", dstpath);