-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/mistress' into mistress
- Loading branch information
Showing
6 changed files
with
27 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Requires toml-test from https://github.com/toml-lang/toml-test, commit 78f8c61 | ||
# or newer (Oct 2023). | ||
|
||
skip=( | ||
# Invalid UTF-8 strings are not rejected | ||
-skip='invalid/encoding/bad-utf8-*' | ||
|
||
# Certain invalid UTF-8 codepoints are not rejected | ||
-skip='invalid/encoding/bad-codepoint' | ||
|
||
# JS uses floats for numbers | ||
-skip='valid/integer/long' | ||
) | ||
|
||
e=0 | ||
toml-test -int-as-float ${skip[@]} ./toml-test-parse.js || e=1 | ||
toml-test -int-as-float -encoder ${skip[@]} ./toml-test-encode.js || e=1 | ||
exit $e |
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
Empty file.