fix: small edits

This commit is contained in:
Tom Hu
2022-04-04 16:28:42 -04:00
parent f37520c6b0
commit ac6033346c
5 changed files with 17 additions and 11 deletions

View File

@@ -85,11 +85,11 @@ test('all arguments', () => {
'-F',
'test2',
'-g',
'-ga',
'--ga',
'-v',
'-gi',
'--gi',
'*.fake',
'-gI',
'--gI',
'real_file',
'-B',
'thomasrockhu/test',

View File

@@ -114,13 +114,13 @@ const buildExec = () => {
execArgs.push('-g');
}
if (gcovArgs) {
execArgs.push('-ga', `${gcovArgs}`);
execArgs.push('--ga', `${gcovArgs}`);
}
if (gcovIgnore) {
execArgs.push('-gi', `${gcovIgnore}`);
execArgs.push('--gi', `${gcovIgnore}`);
}
if (gcovInclude) {
execArgs.push('-gI', `${gcovInclude}`);
execArgs.push('--gI', `${gcovInclude}`);
}
if (overrideBranch) {