-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split man.test to make tests pass without oniguruma (#2722)
- Loading branch information
Showing
11 changed files
with
91 additions
and
71 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
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,13 +1,21 @@ | ||
#!/usr/bin/env python3 | ||
import yaml | ||
import re | ||
|
||
with open("content/manual/manual.yml") as f: | ||
manual = yaml.safe_load(f) | ||
regex_program_pattern = re.compile( | ||
r'\b(?:test|match|capture|scan|split|splits|sub|gsub)\s*\(') | ||
|
||
with open('content/manual/manual.yml') as source, \ | ||
open('../tests/man.test', 'w') as man, \ | ||
open('../tests/manonig.test', 'w') as manonig: | ||
manual = yaml.safe_load(source) | ||
for section in manual.get('sections', []): | ||
for entry in section.get('entries', []): | ||
for example in entry.get('examples', []): | ||
print(example.get('program', '').replace('\n', ' ')) | ||
print(example.get('input', '')) | ||
program = example.get('program', '').replace('\n', ' ') | ||
out = manonig if regex_program_pattern.search(program) else man | ||
print(program, file=out) | ||
print(example.get('input', ''), file=out) | ||
for s in example.get('output', []): | ||
print(s) | ||
print('') | ||
print(s, file=out) | ||
print('', file=out) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,5 @@ | ||
#!/bin/sh | ||
|
||
. "${0%/*}/setup" "$@" | ||
|
||
$VALGRIND $Q $JQ -L "$mods" --run-tests $JQBASEDIR/tests/manonig.test |
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