-
-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run tests with forced memory limit checks
- Loading branch information
Showing
4 changed files
with
73 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,20 @@ | ||
[lua54_coverage] | ||
features = "lua54,vendored,async,serialize,macros" | ||
features = "lua54,vendored,async,send,serialize,macros" | ||
|
||
[lua54_with_memory_limit_coverage] | ||
features = "lua54,vendored,async,send,serialize,macros" | ||
rustflags = "--cfg force_memory_limit" | ||
|
||
[lua51_coverage] | ||
features = "lua51,vendored,async,serialize,macros" | ||
features = "lua51,vendored,async,send,serialize,macros" | ||
|
||
[lua51_with_memory_limit_coverage] | ||
features = "lua51,vendored,async,send,serialize,macros" | ||
rustflags = "--cfg force_memory_limit" | ||
|
||
[luau_coverage] | ||
features = "luau,async,serialize,macros" | ||
features = "luau,async,send,serialize,macros" | ||
|
||
[luau_with_memory_limit_coverage] | ||
features = "luau,async,send,serialize,macros" | ||
rustflags = "--cfg force_memory_limit" |