Skip to content

Commit ceef955

Browse files
freebsd/netbsd: skip test_hard_link_deletion_and_replacement, #9147, #9153
The test fails on these platforms. I could not find the root cause of this issue, but it is likely a minor problem with ctime and doesn't affect borg usage much. So I rather like to have CI on freebsd/netbsd not failing because of this. Also: add is_netbsd and is_openbsd to platformflags. (cherry picked from commit b929e0c)
1 parent 0a553dd commit ceef955

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/borg/platformflags.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@
99
is_win32 = sys.platform.startswith('win32')
1010
is_linux = sys.platform.startswith('linux')
1111
is_freebsd = sys.platform.startswith('freebsd')
12+
is_netbsd = sys.platform.startswith('netbsd')
13+
is_openbsd = sys.platform.startswith('openbsd')
1214
is_darwin = sys.platform.startswith('darwin')

0 commit comments

Comments
 (0)