CRAN Package Check Results for Package huxtable

Last updated on 2025-11-05 04:50:32 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 5.7.0 12.71 213.86 226.57 OK
r-devel-linux-x86_64-debian-gcc 5.7.0 9.10 142.72 151.82 OK
r-devel-linux-x86_64-fedora-clang 5.7.0 46.00 279.89 325.89 ERROR
r-devel-linux-x86_64-fedora-gcc 5.7.0 42.00 289.63 331.63 ERROR
r-devel-windows-x86_64 5.7.0 20.00 236.00 256.00 OK
r-patched-linux-x86_64 5.7.0 17.46 200.43 217.89 OK
r-release-linux-x86_64 5.7.0 12.35 201.89 214.24 OK
r-release-macos-arm64 5.7.0 6.00 74.00 80.00 OK
r-release-macos-x86_64 5.7.0 14.00 161.00 175.00 OK
r-release-windows-x86_64 5.7.0 18.00 230.00 248.00 OK
r-oldrel-macos-arm64 5.7.0 7.00 88.00 95.00 OK
r-oldrel-macos-x86_64 5.7.0 15.00 213.00 228.00 OK
r-oldrel-windows-x86_64 5.7.0 25.00 293.00 318.00 OK

Check Details

Version: 5.7.0
Check: dependencies in R code
Result: NOTE Namespaces in Imports field not imported from: ‘R6’ ‘xml2’ All declared Imports should be used. Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc

Version: 5.7.0
Check: examples
Result: ERROR Running examples in ‘huxtable-Ex.R’ failed The error most likely occurred in: > ### Name: number_format > ### Title: Set how numbers are formatted in cells > ### Aliases: number_format number_format<- set_number_format > ### map_number_format > > ### ** Examples > > ht <- huxtable( + number_format = c( + "Default", + "NA", + "2", + "\"%5.2f\"", + "Pretty", + "Sign" + ), + a = rep(1000, 6), + b = rep(1000.005, 6), + c = rep(0.0001, 6), + d = rep(-1, 6), + e = rep("3.2 (s.e. 1.4)", 6) + ) > > number_format(ht)[3, -1] <- NA > number_format(ht)[4, -1] <- 2 > number_format(ht)[5, -1] <- "%5.2f" > > number_format(ht)[6, -1] <- fmt_pretty() > > number_format(ht)[7, -1] <- list( + function(x) if (x > 0) "+" else "-" + ) > > right_border(ht) <- 1 > bottom_border(ht)[1, ] <- 1 > > ht Error in `stringr::str_replace_all()`: ! Failed to apply `replacement` function. ℹ It must accept a character vector of any length. Caused by error in `if (x > 0) ...`: ! the condition has length > 1 Backtrace: ▆ 1. ├─base (local) `<fn>`(x) 2. ├─huxtable:::print.huxtable(x) 3. │ └─huxtable (local) meth(x, ...) 4. │ ├─base::cat(to_screen(ht, ...)) 5. │ └─huxtable::to_screen(ht, ...) 6. │ └─huxtable:::generate_table_display(...) 7. │ └─huxtable:::create_character_matrix(...) 8. │ └─huxtable:::character_matrix(...) 9. │ └─huxtable:::prepare_cell_display_data(ht, markdown) 10. │ └─huxtable:::clean_contents(ht, output_type = if (markdown) "markdown" else "screen") 11. │ └─huxtable:::format_numbers_matrix(contents, ht) 12. │ └─base::vapply(...) 13. │ └─huxtable (local) FUN(X[[i]], ...) 14. │ └─base::vapply(...) 15. │ └─huxtable (local) FUN(X[[i]], ...) 16. │ └─huxtable:::format_numbers(cell, nf[[row, col]]) 17. │ └─stringr::str_replace_all(string, number_regex(), format_numeral) 18. │ └─stringr:::str_transform_all(string, pattern, replacement) 19. │ ├─base::withCallingHandlers(...) 20. │ └─huxtable (local) replacement(old_flat) 21. │ └─numeral_formatter(num_fmt)(num) 22. └─base::.handleSimpleError(...) 23. └─stringr (local) h(simpleError(msg, call)) 24. └─cli::cli_abort(...) 25. └─rlang::abort(...) Execution halted Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc

Version: 5.7.0
Check: tests
Result: ERROR Running ‘testthat.R’ [133s/134s] Running the tests in ‘tests/testthat.R’ failed. Complete output: > library(testthat) > library(huxtable) > > > we_are_in_R_CMD_check <- TRUE > test_check("huxtable") Attaching package: 'tidyselect' The following object is masked from 'package:testthat': matches Original model not retained as part of coeftest object. i For additional model summary information (r.squared, df, etc.), consider passing `glance.coeftest()` an object where the underlying model has been saved, i.e. `lmtest::coeftest(..., save = TRUE)`. This message is displayed once per session. # weights: 9 (4 variable) initial value 35.155593 iter 10 value 23.131901 final value 23.129234 converged [WARNING] Deprecated: --highlight-style. Use --syntax-highlighting instead. [ FAIL 1 | WARN 3 | SKIP 24 | PASS 1365 ] ══ Skipped tests (24) ══════════════════════════════════════════════════════════ • 0-length tables don't work in flextable yet (1): 'test-flextable.R:81:3' • Awaiting ftExtra improvements (1): 'test-markdown.R:38:3' • Couldn't unload dplyr namespace (2): 'test-miscellaneous.R:50:46', 'test-miscellaneous.R:61:46' • Just too hard to do at the moment. (1): 'test-number-formatting.R:166:3' • On CRAN (19): 'test-latex-dependencies.R:6:3', 'test-latex-dependencies.R:32:3', 'test-latex-dependencies.R:49:3', 'test-markdown.R:54:3', 'test-print.R:155:3', 'test-print.R:260:3', 'test-quick-output.R:58:3', 'test-quick-output.R:74:3', 'test-quick-output.R:87:3', 'test-validate-outputs.R:1:1', 'test-yy-end-to-end.R:100:3', 'test-yy-end-to-end.R:130:3', 'test-yy-end-to-end.R:138:3', 'test-yy-end-to-end.R:144:3', 'test-yy-end-to-end.R:159:3', 'test-yy-end-to-end.R:248:3', 'test-yy-end-to-end.R:264:3', 'test-yy-end-to-end.R:303:3', 'test-yy-end-to-end.R:319:3' ══ Failed tests ════════════════════════════════════════════════════════════════ ── Error ('test-number-formatting.R:23:3'): number_format works on cells with multiple numbers ── Error in `vctrs::list_unchop(old)`: Can't merge the outer name `a` with a vector of length > 1. Please supply a `.name_spec` specification. Backtrace: ▆ 1. ├─testthat::expect_equal(...) at test-number-formatting.R:23:3 2. │ └─testthat::quasi_label(enquo(object), label, arg = "object") 3. │ └─rlang::eval_bare(expr, quo_get_env(quo)) 4. ├─huxtable:::clean_contents(ht, "latex") 5. │ └─huxtable:::format_numbers_matrix(contents, ht) 6. │ └─base::vapply(...) 7. │ └─huxtable (local) FUN(X[[i]], ...) 8. │ └─base::vapply(...) 9. │ └─huxtable (local) FUN(X[[i]], ...) 10. │ └─huxtable:::format_numbers(cell, nf[[row, col]]) 11. │ └─stringr::str_replace_all(string, number_regex(), format_numeral) 12. │ └─stringr:::str_transform_all(string, pattern, replacement) 13. │ └─vctrs::list_unchop(old) 14. └─rlang::abort(message = message) [ FAIL 1 | WARN 3 | SKIP 24 | PASS 1365 ] Deleting unused snapshots: • aarch64-apple-darwin20/validate-outputs/borders-typst.pdf • aarch64-apple-darwin20/validate-outputs/borders.html • aarch64-apple-darwin20/validate-outputs/borders.png • aarch64-apple-darwin20/validate-outputs/borders.rtf • aarch64-apple-darwin20/validate-outputs/borders.svg • aarch64-apple-darwin20/validate-outputs/borders.tex • aarch64-apple-darwin20/validate-outputs/borders.txt • aarch64-apple-darwin20/validate-outputs/cell_spanning-typst.pdf • aarch64-apple-darwin20/validate-outputs/cell_spanning.html • aarch64-apple-darwin20/validate-outputs/cell_spanning.png • aarch64-apple-darwin20/validate-outputs/cell_spanning.rtf • aarch64-apple-darwin20/validate-outputs/cell_spanning.svg • aarch64-apple-darwin20/validate-outputs/cell_spanning.tex • aarch64-apple-darwin20/validate-outputs/cell_spanning.txt • aarch64-apple-darwin20/validate-outputs/content_formatting-typst.pdf • aarch64-apple-darwin20/validate-outputs/content_formatting.html • aarch64-apple-darwin20/validate-outputs/content_formatting.png • aarch64-apple-darwin20/validate-outputs/content_formatting.rtf • aarch64-apple-darwin20/validate-outputs/content_formatting.svg • aarch64-apple-darwin20/validate-outputs/content_formatting.tex • aarch64-apple-darwin20/validate-outputs/content_formatting.txt • aarch64-apple-darwin20/validate-outputs/dimensions-typst.pdf • aarch64-apple-darwin20/validate-outputs/dimensions.html • aarch64-apple-darwin20/validate-outputs/dimensions.png • aarch64-apple-darwin20/validate-outputs/dimensions.rtf • aarch64-apple-darwin20/validate-outputs/dimensions.svg • aarch64-apple-darwin20/validate-outputs/dimensions.tex • aarch64-apple-darwin20/validate-outputs/dimensions.txt • aarch64-apple-darwin20/validate-outputs/table_caption_tests-1.png • aarch64-apple-darwin20/validate-outputs/table_caption_tests-1.svg • aarch64-apple-darwin20/validate-outputs/table_caption_tests-2.png • aarch64-apple-darwin20/validate-outputs/table_caption_tests-2.svg • aarch64-apple-darwin20/validate-outputs/table_caption_tests-3.png • aarch64-apple-darwin20/validate-outputs/table_caption_tests-3.svg • aarch64-apple-darwin20/validate-outputs/table_caption_tests-4.png • aarch64-apple-darwin20/validate-outputs/table_caption_tests-4.svg • aarch64-apple-darwin20/validate-outputs/table_caption_tests-typst.pdf • aarch64-apple-darwin20/validate-outputs/table_caption_tests.html • aarch64-apple-darwin20/validate-outputs/table_caption_tests.rtf • aarch64-apple-darwin20/validate-outputs/table_caption_tests.tex • aarch64-apple-darwin20/validate-outputs/table_caption_tests.txt • aarch64-apple-darwin20/validate-outputs/table_pos_tests-1.png • aarch64-apple-darwin20/validate-outputs/table_pos_tests-1.svg • aarch64-apple-darwin20/validate-outputs/table_pos_tests-2.png • aarch64-apple-darwin20/validate-outputs/table_pos_tests-2.svg • aarch64-apple-darwin20/validate-outputs/table_pos_tests-3.png • aarch64-apple-darwin20/validate-outputs/table_pos_tests-3.svg • aarch64-apple-darwin20/validate-outputs/table_pos_tests-typst.pdf • aarch64-apple-darwin20/validate-outputs/table_pos_tests.html • aarch64-apple-darwin20/validate-outputs/table_pos_tests.rtf • aarch64-apple-darwin20/validate-outputs/table_pos_tests.tex • aarch64-apple-darwin20/validate-outputs/table_pos_tests.txt • aarch64-apple-darwin20/validate-outputs/table_width_tests-1.png • aarch64-apple-darwin20/validate-outputs/table_width_tests-1.svg • aarch64-apple-darwin20/validate-outputs/table_width_tests-2.png • aarch64-apple-darwin20/validate-outputs/table_width_tests-2.svg • aarch64-apple-darwin20/validate-outputs/table_width_tests-3.png • aarch64-apple-darwin20/validate-outputs/table_width_tests-3.svg • aarch64-apple-darwin20/validate-outputs/table_width_tests-typst.pdf • aarch64-apple-darwin20/validate-outputs/table_width_tests.html • aarch64-apple-darwin20/validate-outputs/table_width_tests.rtf • aarch64-apple-darwin20/validate-outputs/table_width_tests.tex • aarch64-apple-darwin20/validate-outputs/table_width_tests.txt • aarch64-apple-darwin20/validate-outputs/text_alignment-typst.pdf • aarch64-apple-darwin20/validate-outputs/text_alignment.html • aarch64-apple-darwin20/validate-outputs/text_alignment.png • aarch64-apple-darwin20/validate-outputs/text_alignment.rtf • aarch64-apple-darwin20/validate-outputs/text_alignment.svg • aarch64-apple-darwin20/validate-outputs/text_alignment.tex • aarch64-apple-darwin20/validate-outputs/text_alignment.txt • aarch64-apple-darwin20/validate-outputs/text_effects-typst.pdf • aarch64-apple-darwin20/validate-outputs/text_effects.html • aarch64-apple-darwin20/validate-outputs/text_effects.png • aarch64-apple-darwin20/validate-outputs/text_effects.rtf • aarch64-apple-darwin20/validate-outputs/text_effects.svg • aarch64-apple-darwin20/validate-outputs/text_effects.tex • aarch64-apple-darwin20/validate-outputs/text_effects.txt • aarch64-apple-darwin20/validate-outputs/text_properties-typst.pdf • aarch64-apple-darwin20/validate-outputs/text_properties.html • aarch64-apple-darwin20/validate-outputs/text_properties.png • aarch64-apple-darwin20/validate-outputs/text_properties.rtf • aarch64-apple-darwin20/validate-outputs/text_properties.svg • aarch64-apple-darwin20/validate-outputs/text_properties.tex • aarch64-apple-darwin20/validate-outputs/text_properties.txt • x86_64-pc-linux-gnu/validate-outputs/borders.html • x86_64-pc-linux-gnu/validate-outputs/borders.rtf • x86_64-pc-linux-gnu/validate-outputs/borders.tex • x86_64-pc-linux-gnu/validate-outputs/borders.txt • x86_64-pc-linux-gnu/validate-outputs/cell_spanning.html • x86_64-pc-linux-gnu/validate-outputs/cell_spanning.rtf • x86_64-pc-linux-gnu/validate-outputs/cell_spanning.tex • x86_64-pc-linux-gnu/validate-outputs/cell_spanning.txt • x86_64-pc-linux-gnu/validate-outputs/content_formatting.html • x86_64-pc-linux-gnu/validate-outputs/content_formatting.rtf • x86_64-pc-linux-gnu/validate-outputs/content_formatting.tex • x86_64-pc-linux-gnu/validate-outputs/content_formatting.txt • x86_64-pc-linux-gnu/validate-outputs/dimensions.html • x86_64-pc-linux-gnu/validate-outputs/dimensions.rtf • x86_64-pc-linux-gnu/validate-outputs/dimensions.tex • x86_64-pc-linux-gnu/validate-outputs/dimensions.txt • x86_64-pc-linux-gnu/validate-outputs/table_caption_tests.html • x86_64-pc-linux-gnu/validate-outputs/table_caption_tests.rtf • x86_64-pc-linux-gnu/validate-outputs/table_caption_tests.tex • x86_64-pc-linux-gnu/validate-outputs/table_caption_tests.txt • x86_64-pc-linux-gnu/validate-outputs/table_width_tests.html • x86_64-pc-linux-gnu/validate-outputs/table_width_tests.rtf • x86_64-pc-linux-gnu/validate-outputs/table_width_tests.tex • x86_64-pc-linux-gnu/validate-outputs/table_width_tests.txt • x86_64-pc-linux-gnu/validate-outputs/text_alignment.html • x86_64-pc-linux-gnu/validate-outputs/text_alignment.rtf • x86_64-pc-linux-gnu/validate-outputs/text_alignment.tex • x86_64-pc-linux-gnu/validate-outputs/text_alignment.txt • x86_64-pc-linux-gnu/validate-outputs/text_effects.html • x86_64-pc-linux-gnu/validate-outputs/text_effects.rtf • x86_64-pc-linux-gnu/validate-outputs/text_effects.tex • x86_64-pc-linux-gnu/validate-outputs/text_effects.txt • x86_64-pc-linux-gnu/validate-outputs/text_properties.html • x86_64-pc-linux-gnu/validate-outputs/text_properties.rtf • x86_64-pc-linux-gnu/validate-outputs/text_properties.tex • x86_64-pc-linux-gnu/validate-outputs/text_properties.txt • x86_64-w64-mingw32/x64/validate-outputs/borders.html • x86_64-w64-mingw32/x64/validate-outputs/borders.rtf • x86_64-w64-mingw32/x64/validate-outputs/borders.tex • x86_64-w64-mingw32/x64/validate-outputs/borders.txt • x86_64-w64-mingw32/x64/validate-outputs/cell_spanning.html • x86_64-w64-mingw32/x64/validate-outputs/cell_spanning.rtf • x86_64-w64-mingw32/x64/validate-outputs/cell_spanning.tex • x86_64-w64-mingw32/x64/validate-outputs/cell_spanning.txt • x86_64-w64-mingw32/x64/validate-outputs/content_formatting.html • x86_64-w64-mingw32/x64/validate-outputs/content_formatting.rtf • x86_64-w64-mingw32/x64/validate-outputs/content_formatting.tex • x86_64-w64-mingw32/x64/validate-outputs/content_formatting.txt • x86_64-w64-mingw32/x64/validate-outputs/dimensions.html • x86_64-w64-mingw32/x64/validate-outputs/dimensions.rtf • x86_64-w64-mingw32/x64/validate-outputs/dimensions.tex • x86_64-w64-mingw32/x64/validate-outputs/dimensions.txt • x86_64-w64-mingw32/x64/validate-outputs/table_caption_tests.html • x86_64-w64-mingw32/x64/validate-outputs/table_caption_tests.rtf • x86_64-w64-mingw32/x64/validate-outputs/table_caption_tests.tex • x86_64-w64-mingw32/x64/validate-outputs/table_caption_tests.txt • x86_64-w64-mingw32/x64/validate-outputs/table_width_tests.html • x86_64-w64-mingw32/x64/validate-outputs/table_width_tests.rtf • x86_64-w64-mingw32/x64/validate-outputs/table_width_tests.tex • x86_64-w64-mingw32/x64/validate-outputs/table_width_tests.txt • x86_64-w64-mingw32/x64/validate-outputs/text_alignment.html • x86_64-w64-mingw32/x64/validate-outputs/text_alignment.rtf • x86_64-w64-mingw32/x64/validate-outputs/text_alignment.tex • x86_64-w64-mingw32/x64/validate-outputs/text_alignment.txt • x86_64-w64-mingw32/x64/validate-outputs/text_effects.html • x86_64-w64-mingw32/x64/validate-outputs/text_effects.rtf • x86_64-w64-mingw32/x64/validate-outputs/text_effects.tex • x86_64-w64-mingw32/x64/validate-outputs/text_effects.txt • x86_64-w64-mingw32/x64/validate-outputs/text_properties.html • x86_64-w64-mingw32/x64/validate-outputs/text_properties.rtf • x86_64-w64-mingw32/x64/validate-outputs/text_properties.tex • x86_64-w64-mingw32/x64/validate-outputs/text_properties.txt Error: Test failures Execution halted Flavor: r-devel-linux-x86_64-fedora-clang

Version: 5.7.0
Check: tests
Result: ERROR Running ‘testthat.R’ [130s/134s] Running the tests in ‘tests/testthat.R’ failed. Complete output: > library(testthat) > library(huxtable) > > > we_are_in_R_CMD_check <- TRUE > test_check("huxtable") Attaching package: 'tidyselect' The following object is masked from 'package:testthat': matches Original model not retained as part of coeftest object. i For additional model summary information (r.squared, df, etc.), consider passing `glance.coeftest()` an object where the underlying model has been saved, i.e. `lmtest::coeftest(..., save = TRUE)`. This message is displayed once per session. # weights: 9 (4 variable) initial value 35.155593 iter 10 value 23.131901 final value 23.129234 converged [WARNING] Deprecated: --highlight-style. Use --syntax-highlighting instead. [ FAIL 1 | WARN 3 | SKIP 24 | PASS 1365 ] ══ Skipped tests (24) ══════════════════════════════════════════════════════════ • 0-length tables don't work in flextable yet (1): 'test-flextable.R:81:3' • Awaiting ftExtra improvements (1): 'test-markdown.R:38:3' • Couldn't unload dplyr namespace (2): 'test-miscellaneous.R:50:46', 'test-miscellaneous.R:61:46' • Just too hard to do at the moment. (1): 'test-number-formatting.R:166:3' • On CRAN (19): 'test-latex-dependencies.R:6:3', 'test-latex-dependencies.R:32:3', 'test-latex-dependencies.R:49:3', 'test-markdown.R:54:3', 'test-print.R:155:3', 'test-print.R:260:3', 'test-quick-output.R:58:3', 'test-quick-output.R:74:3', 'test-quick-output.R:87:3', 'test-validate-outputs.R:1:1', 'test-yy-end-to-end.R:100:3', 'test-yy-end-to-end.R:130:3', 'test-yy-end-to-end.R:138:3', 'test-yy-end-to-end.R:144:3', 'test-yy-end-to-end.R:159:3', 'test-yy-end-to-end.R:248:3', 'test-yy-end-to-end.R:264:3', 'test-yy-end-to-end.R:303:3', 'test-yy-end-to-end.R:319:3' ══ Failed tests ════════════════════════════════════════════════════════════════ ── Error ('test-number-formatting.R:23:3'): number_format works on cells with multiple numbers ── Error in `vctrs::list_unchop(old)`: Can't merge the outer name `a` with a vector of length > 1. Please supply a `.name_spec` specification. Backtrace: ▆ 1. ├─testthat::expect_equal(...) at test-number-formatting.R:23:3 2. │ └─testthat::quasi_label(enquo(object), label, arg = "object") 3. │ └─rlang::eval_bare(expr, quo_get_env(quo)) 4. ├─huxtable:::clean_contents(ht, "latex") 5. │ └─huxtable:::format_numbers_matrix(contents, ht) 6. │ └─base::vapply(...) 7. │ └─huxtable (local) FUN(X[[i]], ...) 8. │ └─base::vapply(...) 9. │ └─huxtable (local) FUN(X[[i]], ...) 10. │ └─huxtable:::format_numbers(cell, nf[[row, col]]) 11. │ └─stringr::str_replace_all(string, number_regex(), format_numeral) 12. │ └─stringr:::str_transform_all(string, pattern, replacement) 13. │ └─vctrs::list_unchop(old) 14. └─rlang::abort(message = message) [ FAIL 1 | WARN 3 | SKIP 24 | PASS 1365 ] Deleting unused snapshots: • aarch64-apple-darwin20/validate-outputs/borders-typst.pdf • aarch64-apple-darwin20/validate-outputs/borders.html • aarch64-apple-darwin20/validate-outputs/borders.png • aarch64-apple-darwin20/validate-outputs/borders.rtf • aarch64-apple-darwin20/validate-outputs/borders.svg • aarch64-apple-darwin20/validate-outputs/borders.tex • aarch64-apple-darwin20/validate-outputs/borders.txt • aarch64-apple-darwin20/validate-outputs/cell_spanning-typst.pdf • aarch64-apple-darwin20/validate-outputs/cell_spanning.html • aarch64-apple-darwin20/validate-outputs/cell_spanning.png • aarch64-apple-darwin20/validate-outputs/cell_spanning.rtf • aarch64-apple-darwin20/validate-outputs/cell_spanning.svg • aarch64-apple-darwin20/validate-outputs/cell_spanning.tex • aarch64-apple-darwin20/validate-outputs/cell_spanning.txt • aarch64-apple-darwin20/validate-outputs/content_formatting-typst.pdf • aarch64-apple-darwin20/validate-outputs/content_formatting.html • aarch64-apple-darwin20/validate-outputs/content_formatting.png • aarch64-apple-darwin20/validate-outputs/content_formatting.rtf • aarch64-apple-darwin20/validate-outputs/content_formatting.svg • aarch64-apple-darwin20/validate-outputs/content_formatting.tex • aarch64-apple-darwin20/validate-outputs/content_formatting.txt • aarch64-apple-darwin20/validate-outputs/dimensions-typst.pdf • aarch64-apple-darwin20/validate-outputs/dimensions.html • aarch64-apple-darwin20/validate-outputs/dimensions.png • aarch64-apple-darwin20/validate-outputs/dimensions.rtf • aarch64-apple-darwin20/validate-outputs/dimensions.svg • aarch64-apple-darwin20/validate-outputs/dimensions.tex • aarch64-apple-darwin20/validate-outputs/dimensions.txt • aarch64-apple-darwin20/validate-outputs/table_caption_tests-1.png • aarch64-apple-darwin20/validate-outputs/table_caption_tests-1.svg • aarch64-apple-darwin20/validate-outputs/table_caption_tests-2.png • aarch64-apple-darwin20/validate-outputs/table_caption_tests-2.svg • aarch64-apple-darwin20/validate-outputs/table_caption_tests-3.png • aarch64-apple-darwin20/validate-outputs/table_caption_tests-3.svg • aarch64-apple-darwin20/validate-outputs/table_caption_tests-4.png • aarch64-apple-darwin20/validate-outputs/table_caption_tests-4.svg • aarch64-apple-darwin20/validate-outputs/table_caption_tests-typst.pdf • aarch64-apple-darwin20/validate-outputs/table_caption_tests.html • aarch64-apple-darwin20/validate-outputs/table_caption_tests.rtf • aarch64-apple-darwin20/validate-outputs/table_caption_tests.tex • aarch64-apple-darwin20/validate-outputs/table_caption_tests.txt • aarch64-apple-darwin20/validate-outputs/table_pos_tests-1.png • aarch64-apple-darwin20/validate-outputs/table_pos_tests-1.svg • aarch64-apple-darwin20/validate-outputs/table_pos_tests-2.png • aarch64-apple-darwin20/validate-outputs/table_pos_tests-2.svg • aarch64-apple-darwin20/validate-outputs/table_pos_tests-3.png • aarch64-apple-darwin20/validate-outputs/table_pos_tests-3.svg • aarch64-apple-darwin20/validate-outputs/table_pos_tests-typst.pdf • aarch64-apple-darwin20/validate-outputs/table_pos_tests.html • aarch64-apple-darwin20/validate-outputs/table_pos_tests.rtf • aarch64-apple-darwin20/validate-outputs/table_pos_tests.tex • aarch64-apple-darwin20/validate-outputs/table_pos_tests.txt • aarch64-apple-darwin20/validate-outputs/table_width_tests-1.png • aarch64-apple-darwin20/validate-outputs/table_width_tests-1.svg • aarch64-apple-darwin20/validate-outputs/table_width_tests-2.png • aarch64-apple-darwin20/validate-outputs/table_width_tests-2.svg • aarch64-apple-darwin20/validate-outputs/table_width_tests-3.png • aarch64-apple-darwin20/validate-outputs/table_width_tests-3.svg • aarch64-apple-darwin20/validate-outputs/table_width_tests-typst.pdf • aarch64-apple-darwin20/validate-outputs/table_width_tests.html • aarch64-apple-darwin20/validate-outputs/table_width_tests.rtf • aarch64-apple-darwin20/validate-outputs/table_width_tests.tex • aarch64-apple-darwin20/validate-outputs/table_width_tests.txt • aarch64-apple-darwin20/validate-outputs/text_alignment-typst.pdf • aarch64-apple-darwin20/validate-outputs/text_alignment.html • aarch64-apple-darwin20/validate-outputs/text_alignment.png • aarch64-apple-darwin20/validate-outputs/text_alignment.rtf • aarch64-apple-darwin20/validate-outputs/text_alignment.svg • aarch64-apple-darwin20/validate-outputs/text_alignment.tex • aarch64-apple-darwin20/validate-outputs/text_alignment.txt • aarch64-apple-darwin20/validate-outputs/text_effects-typst.pdf • aarch64-apple-darwin20/validate-outputs/text_effects.html • aarch64-apple-darwin20/validate-outputs/text_effects.png • aarch64-apple-darwin20/validate-outputs/text_effects.rtf • aarch64-apple-darwin20/validate-outputs/text_effects.svg • aarch64-apple-darwin20/validate-outputs/text_effects.tex • aarch64-apple-darwin20/validate-outputs/text_effects.txt • aarch64-apple-darwin20/validate-outputs/text_properties-typst.pdf • aarch64-apple-darwin20/validate-outputs/text_properties.html • aarch64-apple-darwin20/validate-outputs/text_properties.png • aarch64-apple-darwin20/validate-outputs/text_properties.rtf • aarch64-apple-darwin20/validate-outputs/text_properties.svg • aarch64-apple-darwin20/validate-outputs/text_properties.tex • aarch64-apple-darwin20/validate-outputs/text_properties.txt • x86_64-pc-linux-gnu/validate-outputs/borders.html • x86_64-pc-linux-gnu/validate-outputs/borders.rtf • x86_64-pc-linux-gnu/validate-outputs/borders.tex • x86_64-pc-linux-gnu/validate-outputs/borders.txt • x86_64-pc-linux-gnu/validate-outputs/cell_spanning.html • x86_64-pc-linux-gnu/validate-outputs/cell_spanning.rtf • x86_64-pc-linux-gnu/validate-outputs/cell_spanning.tex • x86_64-pc-linux-gnu/validate-outputs/cell_spanning.txt • x86_64-pc-linux-gnu/validate-outputs/content_formatting.html • x86_64-pc-linux-gnu/validate-outputs/content_formatting.rtf • x86_64-pc-linux-gnu/validate-outputs/content_formatting.tex • x86_64-pc-linux-gnu/validate-outputs/content_formatting.txt • x86_64-pc-linux-gnu/validate-outputs/dimensions.html • x86_64-pc-linux-gnu/validate-outputs/dimensions.rtf • x86_64-pc-linux-gnu/validate-outputs/dimensions.tex • x86_64-pc-linux-gnu/validate-outputs/dimensions.txt • x86_64-pc-linux-gnu/validate-outputs/table_caption_tests.html • x86_64-pc-linux-gnu/validate-outputs/table_caption_tests.rtf • x86_64-pc-linux-gnu/validate-outputs/table_caption_tests.tex • x86_64-pc-linux-gnu/validate-outputs/table_caption_tests.txt • x86_64-pc-linux-gnu/validate-outputs/table_width_tests.html • x86_64-pc-linux-gnu/validate-outputs/table_width_tests.rtf • x86_64-pc-linux-gnu/validate-outputs/table_width_tests.tex • x86_64-pc-linux-gnu/validate-outputs/table_width_tests.txt • x86_64-pc-linux-gnu/validate-outputs/text_alignment.html • x86_64-pc-linux-gnu/validate-outputs/text_alignment.rtf • x86_64-pc-linux-gnu/validate-outputs/text_alignment.tex • x86_64-pc-linux-gnu/validate-outputs/text_alignment.txt • x86_64-pc-linux-gnu/validate-outputs/text_effects.html • x86_64-pc-linux-gnu/validate-outputs/text_effects.rtf • x86_64-pc-linux-gnu/validate-outputs/text_effects.tex • x86_64-pc-linux-gnu/validate-outputs/text_effects.txt • x86_64-pc-linux-gnu/validate-outputs/text_properties.html • x86_64-pc-linux-gnu/validate-outputs/text_properties.rtf • x86_64-pc-linux-gnu/validate-outputs/text_properties.tex • x86_64-pc-linux-gnu/validate-outputs/text_properties.txt • x86_64-w64-mingw32/x64/validate-outputs/borders.html • x86_64-w64-mingw32/x64/validate-outputs/borders.rtf • x86_64-w64-mingw32/x64/validate-outputs/borders.tex • x86_64-w64-mingw32/x64/validate-outputs/borders.txt • x86_64-w64-mingw32/x64/validate-outputs/cell_spanning.html • x86_64-w64-mingw32/x64/validate-outputs/cell_spanning.rtf • x86_64-w64-mingw32/x64/validate-outputs/cell_spanning.tex • x86_64-w64-mingw32/x64/validate-outputs/cell_spanning.txt • x86_64-w64-mingw32/x64/validate-outputs/content_formatting.html • x86_64-w64-mingw32/x64/validate-outputs/content_formatting.rtf • x86_64-w64-mingw32/x64/validate-outputs/content_formatting.tex • x86_64-w64-mingw32/x64/validate-outputs/content_formatting.txt • x86_64-w64-mingw32/x64/validate-outputs/dimensions.html • x86_64-w64-mingw32/x64/validate-outputs/dimensions.rtf • x86_64-w64-mingw32/x64/validate-outputs/dimensions.tex • x86_64-w64-mingw32/x64/validate-outputs/dimensions.txt • x86_64-w64-mingw32/x64/validate-outputs/table_caption_tests.html • x86_64-w64-mingw32/x64/validate-outputs/table_caption_tests.rtf • x86_64-w64-mingw32/x64/validate-outputs/table_caption_tests.tex • x86_64-w64-mingw32/x64/validate-outputs/table_caption_tests.txt • x86_64-w64-mingw32/x64/validate-outputs/table_width_tests.html • x86_64-w64-mingw32/x64/validate-outputs/table_width_tests.rtf • x86_64-w64-mingw32/x64/validate-outputs/table_width_tests.tex • x86_64-w64-mingw32/x64/validate-outputs/table_width_tests.txt • x86_64-w64-mingw32/x64/validate-outputs/text_alignment.html • x86_64-w64-mingw32/x64/validate-outputs/text_alignment.rtf • x86_64-w64-mingw32/x64/validate-outputs/text_alignment.tex • x86_64-w64-mingw32/x64/validate-outputs/text_alignment.txt • x86_64-w64-mingw32/x64/validate-outputs/text_effects.html • x86_64-w64-mingw32/x64/validate-outputs/text_effects.rtf • x86_64-w64-mingw32/x64/validate-outputs/text_effects.tex • x86_64-w64-mingw32/x64/validate-outputs/text_effects.txt • x86_64-w64-mingw32/x64/validate-outputs/text_properties.html • x86_64-w64-mingw32/x64/validate-outputs/text_properties.rtf • x86_64-w64-mingw32/x64/validate-outputs/text_properties.tex • x86_64-w64-mingw32/x64/validate-outputs/text_properties.txt Error: Test failures Execution halted Flavor: r-devel-linux-x86_64-fedora-gcc