[Bug 204157] lib/libarchive/functional_test:test_write_disk_times failed on arm64

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Fri Oct 30 20:41:04 UTC 2015


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204157

--- Comment #6 from NGie Cooper <ngie at FreeBSD.org> ---
(In reply to NGie Cooper from comment #5)

Or is utimes(2) working? Have you run pjdfstest on the platform yet (cd
/usr/tests/sys/pjdfstest; sudo kyua test)?

 873 void
 874 archive_entry_set_birthtime(struct archive_entry *entry, time_t t, long
ns)
 875 {
 876         FIX_NS(t, ns);
 877         entry->stat_valid = 0;
 878         entry->ae_set |= AE_SET_BIRTHTIME;
 879         entry->ae_stat.aest_birthtime = t;
 880         entry->ae_stat.aest_birthtime_nsec = ns;
 881 }
 882 
 883 void
 884 archive_entry_unset_birthtime(struct archive_entry *entry)
 885 {
 886         archive_entry_set_birthtime(entry, 0, 0);
 887         entry->ae_set &= ~AE_SET_BIRTHTIME;
 888 }

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-testing mailing list