##// END OF EJS Templates
mdiff: split lines in allblocks() only when necessary...
mdiff: split lines in allblocks() only when necessary These are only required to handle the --ignore-blank-lines case

File last commit:

r15434:5635a401 default
r15529:b35cf472 default
Show More
test-run-tests.t
58 lines | 648 B | text/troff | Tads3Lexer
Brodie Rao
tests: require regexes in unified tests to be marked with " (re)"...
r12375 Simple commands:
$ echo foo
foo
Mads Kiilerich
tests: (no-eol) markup for command output without trailing LF...
r12940 $ printf 'oh no'
oh no (no-eol)
Matt Mackall
tests: various fixes for new unified test pattern format
r12377 $ printf 'bar\nbaz\n' | cat
Brodie Rao
tests: require regexes in unified tests to be marked with " (re)"...
r12375 bar
baz
Multi-line command:
$ foo() {
> echo bar
> }
$ foo
bar
Matt Mackall
run-tests: replace inline python handling with more native scheme...
r15434 Return codes before inline python:
$ false
[1]
Idan Kamara
tests: add basic tests for doctest syntax
r15249 Doctest commands:
>>> print 'foo'
foo
$ echo interleaved
interleaved
>>> for c in 'xyz':
... print c
x
y
z
>>> print
Matt Mackall
run-tests: replace inline python handling with more native scheme...
r15434
Idan Kamara
tests: add basic tests for doctest syntax
r15249
Brodie Rao
tests: require regexes in unified tests to be marked with " (re)"...
r12375 Regular expressions:
$ echo foobarbaz
foobar.* (re)
$ echo barbazquux
.*quux.* (re)
Brodie Rao
tests: add glob matching for unified tests...
r12376 Globs:
Matt Mackall
tests: various fixes for new unified test pattern format
r12377 $ printf '* \\foobarbaz {10}\n'
Brodie Rao
tests: add glob matching for unified tests...
r12376 \* \\fo?bar* {10} (glob)
Brodie Rao
tests: require regexes in unified tests to be marked with " (re)"...
r12375 Literal match ending in " (re)":
$ echo 'foo (re)'
foo (re)
Exit code:
Mads Kiilerich
tests: avoid checking the exitcode of false...
r12406 $ (exit 1)
Brodie Rao
tests: require regexes in unified tests to be marked with " (re)"...
r12375 [1]