From d4f106bd8699c078cbb74005879fc00f6d8cc7c5 Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Thu, 12 Aug 2010 19:43:40 +0000 Subject: [PATCH] Fix copy&pasted code - we want to create character device here. --- tools/regression/fstest/tests/unlink/11.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/regression/fstest/tests/unlink/11.t b/tools/regression/fstest/tests/unlink/11.t index eb2a79c17164..2542bf914469 100644 --- a/tools/regression/fstest/tests/unlink/11.t +++ b/tools/regression/fstest/tests/unlink/11.t @@ -67,19 +67,19 @@ expect "EACCES|EPERM" -u 65533 -g 65533 unlink ${n0}/${n1} expect 0 unlink ${n0}/${n1} # User owns both: the sticky directory and the character device to be removed. -expect 0 mknod ${n0}/${n1} b 0644 1 2 +expect 0 mknod ${n0}/${n1} c 0644 1 2 expect 0 chown ${n0}/${n1} 65534 65534 expect 0 -u 65534 -g 65534 unlink ${n0}/${n1} # User owns the character device to be removed, but doesn't own the sticky directory. -expect 0 mknod ${n0}/${n1} b 0644 1 2 +expect 0 mknod ${n0}/${n1} c 0644 1 2 expect 0 chown ${n0}/${n1} 65533 65533 expect 0 -u 65533 -g 65533 unlink ${n0}/${n1} # User owns the sticky directory, but doesn't own the character device to be removed. -expect 0 mknod ${n0}/${n1} b 0644 1 2 +expect 0 mknod ${n0}/${n1} c 0644 1 2 expect 0 chown ${n0}/${n1} 65533 65533 expect 0 -u 65534 -g 65534 unlink ${n0}/${n1} # User doesn't own the sticky directory nor the character directory to be removed. -expect 0 mknod ${n0}/${n1} b 0644 1 2 +expect 0 mknod ${n0}/${n1} c 0644 1 2 expect 0 chown ${n0}/${n1} 65534 65534 expect "EACCES|EPERM" -u 65533 -g 65533 unlink ${n0}/${n1} expect 0 unlink ${n0}/${n1}