-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New version includes the following commits. - Make assert_error_covers support stacked diagnostics [1] - Add trace check for error assertions [2] - Fix installer.sh URL in test_on_push.yaml workflow [3] - Fix package_test.yml workflow due to using `tt` [4] - Add Tarantool 2.11 and 3.0 to tests workflow [5] - Migrate `cbuilder` module and adapt it [6] - server: change error message for unix socket path [7] - Migrate `justrun` module and adapt it [8] - Add more logs [9] [1] tarantool/luatest@dfee2f3 [2] tarantool/luatest@e7667b0 [3] tarantool/luatest@718b58b [4] tarantool/luatest@4abb6c2 [5] tarantool/luatest@d596a19 [6] tarantool/luatest@87c6df0 [7] tarantool/luatest@ae8e3d2 [8] tarantool/luatest@c1b2622 [9] tarantool/luatest@d985997
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule luatest
updated
25 files
+2 −2 | .github/workflows/package_test.yml | |
+7 −2 | .github/workflows/test_on_push.yaml | |
+5 −0 | CHANGELOG.md | |
+5 −5 | CMakeLists.txt | |
+2 −0 | config.ld | |
+2 −1 | debian/control | |
+126 −14 | luatest/assertions.lua | |
+235 −0 | luatest/cbuilder.lua | |
+2 −3 | luatest/helpers.lua | |
+5 −0 | luatest/hooks.lua | |
+10 −0 | luatest/init.lua | |
+172 −0 | luatest/justrun.lua | |
+2 −2 | luatest/process.lua | |
+1 −1 | luatest/replica_proxy.lua | |
+5 −3 | luatest/replica_set.lua | |
+5 −2 | luatest/runner.lua | |
+17 −8 | luatest/server.lua | |
+5 −0 | luatest/utils.lua | |
+1 −0 | rpm/luatest.spec | |
+253 −0 | test/cbuilder_test.lua | |
+94 −0 | test/justrun_test.lua | |
+18 −18 | test/luatest_test.lua | |
+153 −18 | test/luaunit/assertions_error_test.lua | |
+2 −2 | test/server_test.lua | |
+8 −0 | test/utils_test.lua |