more concise tests

This commit is contained in:
shockrahwow 2019-10-30 18:37:37 -07:00
parent 48b7662dee
commit 7eb8da29fc

View File

@ -8,9 +8,6 @@ void divide_by_zero() {
int x = 0; int x = 0;
int y = 5; int y = 5;
int z = y/x; int z = y/x;
if(z) {
printf("hmm\n");
}
} }
void test_serial_write() { void test_serial_write() {
@ -28,4 +25,5 @@ void test_dispatcher() {
clear_fb(); clear_fb();
test_write(); test_write();
divide_by_zero(); divide_by_zero();
test_write();
} }