-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7417 from quarto-dev/tinytex/parse-aborted-error
- Loading branch information
Showing
8 changed files
with
80 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
|
||
Other content before | ||
|
||
compilation failed- tlmgr needs to be updated, but the update failed | ||
|
||
|
||
LaTeX Error: Mismatched LaTeX support files detected. | ||
(LaTeX) Loading 'expl3.sty' aborted! | ||
(LaTeX) | ||
(LaTeX) The L3 programming layer in the LaTeX format | ||
(LaTeX) is dated 2023-08-29, but in your TeX tree the files require | ||
(LaTeX) at least 2023-10-10. | ||
|
||
For immediate help type H <return>. | ||
|
||
Other content after |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* parse-error.test.ts | ||
* | ||
* Copyright (C) 2023 Posit Software, PBC | ||
* | ||
*/ | ||
|
||
import { findMissingFontsAndPackages } from "../../../src/command/render/latexmk/parse-error.ts" | ||
import { unitTest } from "../../test.ts"; | ||
import { assert } from "testing/asserts.ts"; | ||
|
||
unitTest("findMissingPackages", async () => { | ||
const logText = Deno.readTextFileSync("expl3-aborted.log") | ||
assert(findMissingFontsAndPackages(logText, ".")[0] === "expl3.sty" ); | ||
}, { | ||
cwd: () => "unit/latexmk/" | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters