Skip to content

Commit

Permalink
Merge pull request #710 from SinisterRectus/master
Browse files Browse the repository at this point in the history
Lua 5.4.7 update
  • Loading branch information
SinisterRectus committed Jul 12, 2024
2 parents b35a4c0 + b2e7a28 commit 258831e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: make test
- name: Test with Aggressive GC
# Run with extremely aggressive garbage collection to potentially find more problems
run: ./build/lua -e "collectgarbage('setpause', 0); collectgarbage('setstepmul', 10000000000000)" tests/run.lua
run: ./build/lua -e "collectgarbage('incremental', 0, 10000000000000)" tests/run.lua

clang-tsan:
runs-on: ubuntu-latest
Expand All @@ -52,7 +52,7 @@ jobs:
run: make test
- name: Test with Aggressive GC
# Run with extremely aggressive garbage collection to potentially find more problems
run: ./build/lua -e "collectgarbage('setpause', 0); collectgarbage('setstepmul', 10000000000000)" tests/run.lua
run: ./build/lua -e "collectgarbage('incremental', 0, 10000000000000)" tests/run.lua

valgrind:
runs-on: ubuntu-latest
Expand All @@ -70,7 +70,7 @@ jobs:
- name: Build
run: make
- name: Test
run: valgrind --suppressions=.ci/valgrind_mem.supp --error-exitcode=1 --leak-check=full --child-silent-after-fork=yes --keep-debuginfo=yes --track-origins=yes ./build/lua -e "collectgarbage('setpause', 0); collectgarbage('setstepmul', 10000000000000)" tests/run.lua
run: valgrind --suppressions=.ci/valgrind_mem.supp --error-exitcode=1 --leak-check=full --child-silent-after-fork=yes --keep-debuginfo=yes --track-origins=yes ./build/lua -e "collectgarbage('incremental', 0, 10000000000000)" tests/run.lua

process-cleanup-test:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion deps/lua
Submodule lua updated 73 files
+153 −162 lapi.c
+5 −34 lapi.h
+42 −106 lauxlib.c
+39 −2 lauxlib.h
+24 −32 lbaselib.c
+9 −9 lcode.c
+1 −1 lcode.h
+0 −1 lcorolib.c
+9 −1 ldblib.c
+8 −11 ldebug.c
+11 −30 ldo.c
+12 −19 ldo.h
+32 −93 ldump.c
+4 −6 lfunc.c
+347 −328 lgc.c
+22 −77 lgc.h
+26 −24 linit.c
+2 −1 liolib.c
+6 −11 llex.c
+145 −37 llimits.h
+31 −14 lmathlib.c
+4 −4 lmem.c
+0 −2 lmem.h
+7 −8 loadlib.c
+1 −58 lobject.c
+11 −55 lobject.h
+3 −3 lopcodes.h
+0 −1 loslib.c
+28 −37 lparser.c
+56 −42 lstate.c
+15 −25 lstate.h
+13 −98 lstring.c
+5 −20 lstring.h
+75 −75 lstrlib.c
+126 −409 ltable.c
+11 −125 ltable.h
+29 −17 ltablib.c
+55 −144 ltests.c
+3 −4 ltests.h
+23 −28 ltm.c
+7 −8 ltm.h
+2 −7 lua.c
+24 −52 lua.h
+4 −1 luaconf.h
+13 −26 lualib.h
+56 −126 lundump.c
+2 −6 lundump.h
+22 −22 lutf8lib.c
+131 −137 lvm.c
+24 −19 lvm.h
+8 −29 lzio.c
+0 −1 lzio.h
+9 −10 makefile
+1 −1 manual/2html
+284 −382 manual/manual.of
+1 −1 testes/all.lua
+22 −101 testes/api.lua
+1 −1 testes/attrib.lua
+1 −26 testes/calls.lua
+11 −8 testes/closure.lua
+5 −5 testes/coroutine.lua
+0 −9 testes/events.lua
+2 −4 testes/files.lua
+54 −39 testes/gc.lua
+17 −27 testes/gengc.lua
+8 −2 testes/locals.lua
+5 −5 testes/main.lua
+6 −8 testes/nextvar.lua
+1 −1 testes/pm.lua
+4 −32 testes/sort.lua
+7 −26 testes/strings.lua
+9 −10 testes/tpack.lua
+17 −27 testes/utf8.lua

0 comments on commit 258831e

Please sign in to comment.