summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-02-06 14:14:35 +0100
committerwm4 <wm4@nowhere>2020-02-06 14:14:35 +0100
commit1dc3507474aeb82d023d4fc2949d25fc774e2ce0 (patch)
tree669003b20a994fc16fa96bdc84fa1942c15fea0c /test
parent31acec543819cf56d63dddae59507858b1229b75 (diff)
downloadmpv-1dc3507474aeb82d023d4fc2949d25fc774e2ce0.tar.bz2
mpv-1dc3507474aeb82d023d4fc2949d25fc774e2ce0.tar.xz
path: add mp_path_is_absolute()
Just move it from mp_path_join_bstr() to this new function.
Diffstat (limited to 'test')
-rw-r--r--test/paths.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/paths.c b/test/paths.c
index 434a7996ad..66d4ee2e2d 100644
--- a/test/paths.c
+++ b/test/paths.c
@@ -14,11 +14,25 @@ static void test_join(char *file, int line, char *a, char *b, char *c)
talloc_free(res);
}
+static void test_abs(char *file, int line, bool abs, char *a)
+{
+ if (mp_path_is_absolute(bstr0(a)) != abs) {
+ printf("%s:%d: mp_path_is_absolute('%s') => %d, expected %d\n",
+ file, line, a, !abs, abs);
+ abort();
+ }
+}
+
#define TEST_JOIN(a, b, c) \
test_join(__FILE__, __LINE__, a, b, c);
+#define TEST_ABS(abs, a) \
+ test_abs(__FILE__, __LINE__, abs, a)
+
static void run(struct test_ctx *ctx)
{
+ TEST_ABS(true, "/ab");
+ TEST_ABS(false, "ab");
TEST_JOIN("", "", "");
TEST_JOIN("a", "", "a");
TEST_JOIN("/a", "", "/a");
@@ -29,6 +43,12 @@ static void run(struct test_ctx *ctx)
TEST_JOIN("ab/", "/cd", "/cd");
// Note: we prefer "/" on win32, but tolerate "\".
#if HAVE_DOS_PATHS
+ TEST_ABS(true, "\\ab");
+ TEST_ABS(true, "c:\\");
+ TEST_ABS(true, "c:/");
+ TEST_ABS(false, "c:");
+ TEST_ABS(false, "c:a");
+ TEST_ABS(false, "c:a\\");
TEST_JOIN("ab\\", "cd", "ab\\cd");
TEST_JOIN("ab\\", "\\cd", "\\cd");
TEST_JOIN("c:/", "de", "c:/de");