File tree Expand file tree Collapse file tree 5 files changed +13
-8
lines changed
Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1+ # lang_tester 0.9.0 (2024-08-30)
2+
3+ ## Breaking change
4+
5+ * Update the [ fm] ( https://crates.io/crates/fm ) dependency, which has breaking
6+ changes, as well as [ several new
7+ features] ( https://github.com/softdevteam/fm/blob/master/CHANGES.md#fm-040-2024-08-30 ) .
8+
9+
110# lang_tester 0.8.2 (2024-07-18)
211
312* Sort test failures by name rather than the previous arbitrary order.
Original file line number Diff line number Diff line change 22name = " lang_tester"
33description = " Concise language testing framework for compilers and VMs"
44repository = " https://github.com/softdevteam/lang_tester/"
5- version = " 0.8.2 "
5+ version = " 0.9.0 "
66authors = [
" Laurence Tratt <[email protected] >" ]
77readme = " README.md"
88license = " Apache-2.0/MIT"
@@ -23,7 +23,7 @@ path = "lang_tests/rerun/main.rs"
2323harness = false
2424
2525[dependencies ]
26- fm = " 0.3 "
26+ fm = " 0.4.0 "
2727getopts = " 0.2"
2828libc = " 0.2"
2929num_cpus = " 1.15"
Original file line number Diff line number Diff line change 11[licenses ]
2- unlicensed = " deny"
32confidence-threshold = 1.0
43allow = [
54 " Apache-2.0" ,
6- " BSD-3-Clause" ,
75 " MIT" ,
86 " Unlicense"
97]
Original file line number Diff line number Diff line change @@ -25,8 +25,7 @@ fn main() {
2525 . fm_options ( |_, _, fmb| {
2626 let ptn_re = Regex :: new ( r"\$.+?\b" ) . unwrap ( ) ;
2727 let text_re = Regex :: new ( r".+?\b" ) . unwrap ( ) ;
28- fmb. name_matcher ( ptn_re, text_re)
29- . ignore_leading_whitespace ( false )
28+ fmb. name_matcher ( ptn_re, text_re) . trim_whitespace ( false )
3029 } )
3130 . test_cmds ( move |p| {
3231 let mut vm = Command :: new ( "python3" ) ;
Original file line number Diff line number Diff line change @@ -50,8 +50,7 @@ fn main() {
5050 . fm_options ( |_, _, fmb| {
5151 let ptn_re = Regex :: new ( r"\$.+?\b" ) . unwrap ( ) ;
5252 let text_re = Regex :: new ( r".+?\b" ) . unwrap ( ) ;
53- fmb. name_matcher ( ptn_re, text_re)
54- . ignore_leading_whitespace ( false )
53+ fmb. name_matcher ( ptn_re, text_re) . trim_whitespace ( false )
5554 } )
5655 . test_cmds ( move |p| {
5756 let mut vm = Command :: new ( "python3" ) ;
You can’t perform that action at this time.
0 commit comments