-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes issue of tests not rebuilding correctly after modification
- Loading branch information
1 parent
8a85ea9
commit 79149b8
Showing
43 changed files
with
742 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#include "cmocka_inc.h" | ||
|
||
int test_e2e_setup(void** state); | ||
void test_midi_note_on_event_sent_to_ym2612(void** state); | ||
void test_polyphonic_midi_sent_to_separate_ym2612_channels(void** state); | ||
void test_psg_audible_if_note_on_event_triggered(void** state); | ||
void test_psg_not_audible_if_midi_channel_volume_set_and_there_is_no_note_on_event(void** state); | ||
void test_general_midi_reset_sysex_stops_all_notes(void** state); | ||
void test_remap_midi_channel_1_to_psg_channel_1(); | ||
void test_set_device_for_midi_channel_1_to_psg(); | ||
void test_pong_received_after_ping_sent(); | ||
void test_loads_psg_envelope(); | ||
void test_enables_ch3_special_mode(void** state); | ||
void test_sets_separate_ch3_operator_frequencies(void** state); | ||
void test_write_directly_to_ym2612_regs_via_sysex(void** state); | ||
void test_plays_pcm_sample(void** state); | ||
void test_midi_last_note_played_priority_respected_on_fm(void** state); | ||
void test_midi_last_note_played_remembers_velocity_on_fm(void** state); | ||
void test_midi_last_note_played_cleared_when_released_on_fm(void** state); | ||
void test_midi_changing_program_retains_pan(void** state); | ||
void test_midi_changing_program_retains_volume(void** state); | ||
void test_midi_portamento_glides_note(void** state); | ||
void test_pitch_bends_ch3_special_mode_operators(void** state); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.