From 2d5edb37b924715b4fbee4d917ac334c773fca61 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 7 Nov 2022 15:10:50 -0500 Subject: tests/xtouch: New utility POSIX touch(1) doesn't include the -h option, and indeed OpenBSD doesn't implement it. Making our own utility also lets us add some handy extensions like -p (create parents) and -M (set permissions). --- tests/posix/L_xdev.sh | 2 +- tests/posix/depth_error.sh | 2 +- tests/posix/type_bind_mount.sh | 2 +- tests/posix/xdev.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/posix') diff --git a/tests/posix/L_xdev.sh b/tests/posix/L_xdev.sh index c18a39e..ddbadd8 100644 --- a/tests/posix/L_xdev.sh +++ b/tests/posix/L_xdev.sh @@ -5,7 +5,7 @@ clean_scratch mkdir scratch/{foo,mnt} sudo mount -t tmpfs tmpfs scratch/mnt ln -s ../mnt scratch/foo/bar -$TOUCH scratch/mnt/baz +"$XTOUCH" scratch/mnt/baz ln -s ../mnt/baz scratch/foo/qux bfs_diff -L scratch -xdev diff --git a/tests/posix/depth_error.sh b/tests/posix/depth_error.sh index e1267f4..f770210 100644 --- a/tests/posix/depth_error.sh +++ b/tests/posix/depth_error.sh @@ -1,5 +1,5 @@ clean_scratch -touchp scratch/foo/bar +"$XTOUCH" -p scratch/foo/bar chmod a-r scratch/foo bfs_diff scratch -depth diff --git a/tests/posix/type_bind_mount.sh b/tests/posix/type_bind_mount.sh index e05baa3..445f6ef 100644 --- a/tests/posix/type_bind_mount.sh +++ b/tests/posix/type_bind_mount.sh @@ -2,7 +2,7 @@ skip_unless test "$SUDO" skip_unless test "$UNAME" = "Linux" clean_scratch -$TOUCH scratch/{file,null} +"$XTOUCH" scratch/{file,null} sudo mount --bind /dev/null scratch/null bfs_diff scratch -type c diff --git a/tests/posix/xdev.sh b/tests/posix/xdev.sh index 7c26c3f..4591940 100644 --- a/tests/posix/xdev.sh +++ b/tests/posix/xdev.sh @@ -4,7 +4,7 @@ skip_if test "$UNAME" = "Darwin" clean_scratch mkdir scratch/{foo,mnt} sudo mount -t tmpfs tmpfs scratch/mnt -$TOUCH scratch/foo/bar scratch/mnt/baz +"$XTOUCH" scratch/foo/bar scratch/mnt/baz bfs_diff scratch -xdev ret=$? -- cgit v1.2.3