Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Oct 2015 20:41:04 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-testing@freebsd.org
Subject:   [Bug 204157] lib/libarchive/functional_test:test_write_disk_times failed on arm64
Message-ID:  <bug-204157-32464-d2Hu1TQ0th@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-204157-32464@https.bugs.freebsd.org/bugzilla/>
References:  <bug-204157-32464@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204157

--- Comment #6 from NGie Cooper <ngie@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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-204157-32464-d2Hu1TQ0th>