Skip to content

Commit

Permalink
提交崩溃测试
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed Apr 23, 2024
1 parent c0dcd99 commit 3fc3eaa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 3rd/bee.lua
Submodule bee.lua updated 84 files
+7 −27 .github/workflows/test.yml
+3 −0 3rd/filesystem.h
+5 −3 3rd/fmt/fmt/args.h
+65 −36 3rd/fmt/fmt/base.h
+193 −28 3rd/fmt/fmt/chrono.h
+3 −1 3rd/fmt/fmt/compile.h
+15 −11 3rd/fmt/fmt/format-inl.h
+79 −71 3rd/fmt/fmt/format.h
+14 −8 3rd/fmt/fmt/os.h
+3 −1 3rd/fmt/fmt/ostream.h
+4 −2 3rd/fmt/fmt/printf.h
+52 −12 3rd/fmt/fmt/ranges.h
+65 −30 3rd/fmt/fmt/std.h
+16 −6 3rd/fmt/fmt/xchar.h
+12 −0 3rd/lua-seri/lua-seri.c
+1 −1 3rd/lua/bee_utf8_crt.cpp
+1 −1 3rd/lua/bee_utf8_main.c
+21 −29 bee/error.cpp
+7 −6 bee/error.h
+1 −1 bee/filewatch/filewatch_win.cpp
+12 −0 bee/lua/error.h
+13 −11 bee/lua/narrow.h
+62 −0 bee/net/bpoll.h
+1 −0 bee/net/bpoll_bsd.cpp
+48 −0 bee/net/bpoll_linux.cpp
+236 −0 bee/net/bpoll_osx.cpp
+93 −0 bee/net/bpoll_win.cpp
+58 −28 bee/net/endpoint.cpp
+10 −9 bee/net/endpoint.h
+2 −2 bee/net/ip.h
+60 −90 bee/net/socket.cpp
+15 −20 bee/net/socket.h
+1 −7 bee/subprocess/common.h
+4 −10 bee/subprocess/process_select.cpp
+3 −3 bee/subprocess/process_select.h
+6 −3 bee/subprocess/subprocess_posix.cpp
+15 −7 bee/subprocess/subprocess_win.cpp
+1 −1 bee/thread/setname.cpp
+44 −0 bee/utility/bitmask.h
+0 −2 bee/utility/file_handle.cpp
+5 −1 bee/utility/file_handle.h
+2 −2 bee/utility/file_handle_bsd.cpp
+2 −2 bee/utility/file_handle_linux.cpp
+2 −2 bee/utility/file_handle_osx.cpp
+2 −2 bee/utility/file_handle_posix.cpp
+3 −3 bee/utility/file_handle_win.cpp
+468 −0 bee/utility/flatmap.h
+38 −0 bee/utility/hybrid_array.h
+7 −7 bee/utility/path_helper.cpp
+99 −0 bee/utility/span.h
+2 −2 bee/version.cpp
+0 −0 bee/version.h
+214 −0 bee/win/afd/afd.cpp
+53 −0 bee/win/afd/afd.h
+160 −0 bee/win/afd/poller.cpp
+28 −0 bee/win/afd/poller.h
+133 −0 bee/win/afd/poller_fd.cpp
+42 −0 bee/win/afd/poller_fd.h
+0 −0 bee/win/cwtf8.h
+1 −1 bee/win/module_version.cpp
+0 −0 bee/win/module_version.h
+1 −1 bee/win/unicode.cpp
+0 −0 bee/win/unicode.h
+2 −2 bee/win/wtf8.cpp
+0 −0 bee/win/wtf8.h
+252 −0 binding/lua_epoll.cpp
+131 −120 binding/lua_filesystem.cpp
+1 −1 binding/lua_filewatch.cpp
+1 −1 binding/lua_platform.cpp
+1 −2 binding/lua_select.cpp
+439 −369 binding/lua_socket.cpp
+19 −39 binding/lua_subprocess.cpp
+1 −1 binding/lua_thread.cpp
+89 −0 binding/luaref.cpp
+12 −0 binding/luaref.h
+7 −14 binding/port/lua_windows.cpp
+1 −1 bootstrap/main.cpp
+2 −0 compile/common.lua
+2 −1 test/ltest.lua
+1 −0 test/test.lua
+481 −0 test/test_epoll.lua
+4 −3 test/test_filewatch.lua
+36 −5 test/test_socket.lua
+1 −1 test/test_subprocess.lua
1 change: 1 addition & 0 deletions test/basic/filewatch.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require 'bee.filewatch'.create():add('中文文件夹')
1 change: 1 addition & 0 deletions test/basic/init.lua
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
require 'basic.textmerger'
require 'basic.filewatch'

0 comments on commit 3fc3eaa

Please sign in to comment.