2020-04-12 12:04:50 -04:00
|
|
|
USING: benchmark.regex-dna io.encodings.ascii io.files
|
|
|
|
|
io.streams.string kernel sequences tools.test ;
|
2008-09-22 03:37:48 -04:00
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ t } [
|
2008-09-22 03:37:48 -04:00
|
|
|
"resource:extra/benchmark/regex-dna/regex-dna-test-in.txt"
|
2008-11-21 21:09:23 -05:00
|
|
|
[ regex-dna ] with-string-writer
|
2008-09-22 03:37:48 -04:00
|
|
|
"resource:extra/benchmark/regex-dna/regex-dna-test-out.txt"
|
2020-04-12 00:57:49 -04:00
|
|
|
! Ensure the line endings don't change on Windows
|
|
|
|
|
! when checking out with git.
|
2020-04-12 12:04:50 -04:00
|
|
|
ascii file-lines [ "\n" append ] map concat =
|
2008-09-22 03:37:48 -04:00
|
|
|
] unit-test
|