Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F106946314
D44609.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D44609.diff
View Options
diff --git a/contrib/netbsd-tests/fs/tmpfs/t_times.sh b/contrib/netbsd-tests/fs/tmpfs/t_times.sh
--- a/contrib/netbsd-tests/fs/tmpfs/t_times.sh
+++ b/contrib/netbsd-tests/fs/tmpfs/t_times.sh
@@ -36,10 +36,6 @@
atf_set "require.user" "root"
}
empty_body() {
- # Begin FreeBSD
- atf_expect_fail "Incorrect atime on FreeBSD: PR274615"
- # End FreeBSD
-
test_mount
atf_check -s eq:0 -o empty -e empty touch a
@@ -49,13 +45,14 @@
[ ${ost_birthtime} -eq ${ost_mtime} ] || atf_fail "Incorrect mtime"
sleep 1
- atf_check -s eq:0 -o ignore -e empty cat a
+ atf_check -s eq:0 -o empty -e empty cat a
eval $(stat -s a) || atf_fail "stat failed"
[ ${st_atime} -gt ${ost_atime} ] || atf_fail "Incorrect atime"
[ ${st_ctime} -eq ${ost_ctime} ] || atf_fail "Incorrect ctime"
[ ${st_mtime} -eq ${ost_mtime} ] || atf_fail "Incorrect mtime"
sleep 1
+ ost_atime=${st_atime}
echo foo >a || atf_fail "Write failed"
eval $(stat -s a) || atf_fail "stat failed"
[ ${st_atime} -gt ${ost_atime} ] || atf_fail "Incorrect atime"
@@ -65,6 +62,34 @@
test_unmount
}
+atf_test_case holey
+holey_head() {
+ atf_set "descr" "Tests that creating a file consisting entirely" \
+ "of a hole and later" \
+ "manipulating it updates times correctly"
+ atf_set "require.user" "root"
+}
+holey_body() {
+ atf_expect_fail "https://bugs.freebsd.org/274615"
+
+ test_mount
+
+ atf_check -s eq:0 -o empty -e empty truncate -s 8k a
+ eval $(stat -s a | sed -e 's|st_|ost_|g') || atf_fail "stat failed"
+ [ ${ost_birthtime} -eq ${ost_atime} ] || atf_fail "Incorrect atime"
+ [ ${ost_birthtime} -eq ${ost_ctime} ] || atf_fail "Incorrect ctime"
+ [ ${ost_birthtime} -eq ${ost_mtime} ] || atf_fail "Incorrect mtime"
+
+ sleep 1
+ atf_check -s eq:0 -o ignore -e empty cat a
+ eval $(stat -s a) || atf_fail "stat failed"
+ [ ${st_atime} -gt ${ost_atime} ] || atf_fail "Incorrect atime"
+ [ ${st_ctime} -eq ${ost_ctime} ] || atf_fail "Incorrect ctime"
+ [ ${st_mtime} -eq ${ost_mtime} ] || atf_fail "Incorrect mtime"
+
+ test_unmount
+}
+
atf_test_case non_empty
non_empty_head() {
atf_set "descr" "Tests that creating a non-empty file and later" \
@@ -78,7 +103,7 @@
eval $(stat -s b | sed -e 's|st_|ost_|g') || atf_fail "stat failed"
sleep 1
- atf_check -s eq:0 -o ignore -e empty cat b
+ atf_check -s eq:0 -o inline:"foo\n" -e empty cat b
eval $(stat -s b) || atf_fail "stat failed"
[ ${st_atime} -gt ${ost_atime} ] || atf_fail "Incorrect atime"
[ ${st_ctime} -eq ${ost_ctime} ] || atf_fail "Incorrect ctime"
@@ -139,6 +164,7 @@
. $(atf_get_srcdir)/h_funcs.subr
atf_add_test_case empty
+ atf_add_test_case holey
atf_add_test_case non_empty
atf_add_test_case link
atf_add_test_case rename
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Jan 8, 9:27 PM (3 h, 46 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15726771
Default Alt Text
D44609.diff (2 KB)
Attached To
Mode
D44609: tmpfs: Improve file time tests.
Attached
Detach File
Event Timeline
Log In to Comment