Skip to content

Commit 74da6fe

Browse files
committed
test
1 parent 045fb6f commit 74da6fe

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/CI-unixish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ jobs:
8787
cmake --build build.cmake.signal --target test-signalhandler -- -j$(nproc)
8888
# TODO: how to run this without copying the file?
8989
cp build.cmake.signal/bin/test-s* .
90+
./test-signalhandler abort
9091
python3 -m pytest -Werror --strict-markers -vv test/signal/test-signalhandler.py
9192
rm test-signalhandler
9293

cli/stacktrace.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
void print_stacktrace(FILE* output, int start_idx, bool demangling, int maxdepth, bool omit_above_own)
3232
{
33+
fputs("print_stacktrace\n", output);
3334
// 32 vs. 64bit
3435
#define ADDRESSDISPLAYLENGTH ((sizeof(long)==8)?12:8)
3536
void *callstackArray[32]= {nullptr}; // the less resources the better...

0 commit comments

Comments
 (0)