Skip to content

Commit

Permalink
这个测试可能太严格了
Browse files Browse the repository at this point in the history
  • Loading branch information
actboy168 committed Apr 28, 2024
1 parent b59362f commit 4f8da49
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions test/test_skip.lua
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
local platform = require "bee.platform"
local lt = require "ltest"

local SKIP <const> = lt.skip

if platform.os == "macos" then
SKIP "thread.test_sleep"
end

if platform.os == "freebsd" then
lt.skip "filewatch"
lt.skip "filesystem.test_symlink"
SKIP "filewatch"
SKIP "filesystem.test_symlink"
end

if platform.os == "openbsd" then
lt.skip "filewatch"
SKIP "filewatch"
SKIP "thread.test_sleep"
end

if platform.os == "netbsd" then
lt.skip "filewatch"
SKIP "filewatch"
SKIP "thread.test_sleep"
end

0 comments on commit 4f8da49

Please sign in to comment.