Fix test cases

This commit is contained in:
Marisa Heit 2022-07-24 17:07:53 -05:00
parent 32f4347d26
commit b58d142dd9
2 changed files with 8 additions and 1 deletions

View file

@ -22,7 +22,7 @@ if( test_not_successful )
endif( test_not_successful )
execute_process(
COMMAND ${CMAKE_COMMAND} -E compare_files ${expected_output} ${test_output}
COMMAND ${CMAKE_COMMAND} -E compare_files --ignore-eol ${expected_output} ${test_output}
RESULT_VARIABLE compare_not_successful
)

View file

@ -6,6 +6,13 @@
#include <limits.h>
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
static short order = 0;
void callback_stable_sort(unsigned int time, fluid_event_t *event, fluid_sequencer_t *seq, void *data)
{