Skip to content

Commit

Permalink
Remove debug output for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarbenjamin committed Aug 6, 2023
1 parent 26bdd65 commit 7df0933
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/qsieve/factor.c
Original file line number Diff line number Diff line change
Expand Up @@ -489,9 +489,6 @@ void qsieve_factor(fmpz_factor_t factors, const fmpz_t n)
if (qs_inf->siqs != NULL && fclose((FILE *) qs_inf->siqs))
flint_throw(FLINT_ERROR, "fclose fail\n");

Check warning on line 490 in src/qsieve/factor.c

View check run for this annotation

Codecov / codecov/patch

src/qsieve/factor.c#L490

Added line #L490 was not covered by tests
if (remove(qs_inf->fname)) {
perror("qsieve/factor.c: remove failed. perror says");
printf("qs_inf->fname is %s\n", qs_inf->fname);
printf("qs_inf->siqs != NULL is %d\n", qs_inf->siqs != NULL);
flint_throw(FLINT_ERROR, "remove fail\n");
}
qsieve_clear(qs_inf);
Expand Down

0 comments on commit 7df0933

Please sign in to comment.