Skip to content

Commit

Permalink
Correct +JPcover line option
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorng committed Nov 25, 2023
1 parent d77ef65 commit 9bf92ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erts/emulator/beam/erl_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -1723,7 +1723,7 @@ erl_start(int argc, char **argv)
erts_coverage_mode = ERTS_COV_FUNCTION;
} else if (sys_strcmp(arg, "function_counters") == 0) {
erts_coverage_mode = ERTS_COV_FUNCTION_COUNTERS;
} else if (sys_strcmp(arg, "line_coverage") == 0) {
} else if (sys_strcmp(arg, "line") == 0) {
erts_coverage_mode = ERTS_COV_LINE;
} else if (sys_strcmp(arg, "line_counters") == 0) {
erts_coverage_mode = ERTS_COV_LINE_COUNTERS;
Expand Down

0 comments on commit 9bf92ca

Please sign in to comment.