Skip to content

Commit 4c24e72

Browse files
committed
one-off temporary commit to see if we can get some info from lldb...?
1 parent 0b31432 commit 4c24e72

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,7 @@ jobs:
6363

6464
- name: Output test logs on failure
6565
if: failure()
66-
run: tail tests/*.log
66+
run: |
67+
tail tests/*.log
68+
tail tests/tmp/*.out.txt
6769

src/yaml.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ asdf_yaml_event_type_t asdf_yaml_event_type(const asdf_event_t *event) {
2828

2929
enum fy_event_type type = event->payload.yaml->type;
3030
if (type < 0 || type >= (int)(sizeof(FYET_TO_ASDF_EVENT) / sizeof(FYET_TO_ASDF_EVENT[0]))) {
31+
fprintf(stderr, "error: invalid fy_event_type: %d\n", type);
3132
abort();
3233
}
3334
return FYET_TO_ASDF_EVENT[type];

0 commit comments

Comments
 (0)