Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Sep 1, 2024
1 parent 2d751a2 commit 3511801
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions test/src/pdf2htmlEX_wrapper_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,15 @@ TEST_P(pdf2htmlEXWrapperTests, html) {
EXPECT_TRUE(fs::is_regular_file(html_page.path));
EXPECT_LT(0, fs::file_size(html_page.path));
}
} catch (const std::exception & e) {
std::cerr << test_file.path << std::endl << e.what() << std::endl << std::flush;
} catch (const std::exception &e) {
std::cerr << test_file.path << std::endl
<< e.what() << std::endl
<< std::flush;

#ifdef __GNUC__
void *array[10];
int size = backtrace(array, 10);
char ** symbols = backtrace_symbols(array, size);
char **symbols = backtrace_symbols(array, size);
for (int i = 0; i < size; i++) {
std::cerr << symbols[i] << std::endl;
}
Expand Down

0 comments on commit 3511801

Please sign in to comment.