Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fbeutin-ledger committed Nov 17, 2023
1 parent 675b525 commit a9c6266
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ add_executable(test_swap
src/test_swap.c
src/cx.c
../src/swap/handle_check_address.h
../src/swap/swap_lib_calls.c
../src/swap/swap_lib_calls.h
../src/swap/swap_utils.c
../src/swap/swap_utils.h
include/bolos_target.h
include/cx.h
include/os.h
Expand Down
2 changes: 1 addition & 1 deletion tests/include/os.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#define EXCEPTION_SYSTEM 18
#define NOT_ENOUGH_SPACE 19

#define PRINTF(strbuf, ...) fprintf(stderr, strbuf, MAX_FIELD_LEN, __VA_ARGS__)
#define PRINTF(...)

#define MAX(a, b) ((a) > (b)) ? (a) : (b)
#define MIN(a, b) ((a) < (b)) ? (a) : (b)

0 comments on commit a9c6266

Please sign in to comment.