mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-23 16:55:42 +00:00
Adds line number substitution in test cases
Expanded generate_code.pl to substitute !LINE_NO! in test cases.
This commit is contained in:
parent
4225611887
commit
c1d2eb3fd6
|
@ -95,6 +95,8 @@ for my $line (@test_cases_lines) {
|
||||||
$line = $line."#line $index \"$test_case_file\"\n";
|
$line = $line."#line $index \"$test_case_file\"\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$line =~ s/!LINE_NO!/$index/;
|
||||||
|
|
||||||
$test_cases = $test_cases.$line;
|
$test_cases = $test_cases.$line;
|
||||||
$index++;
|
$index++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue