Explorar el Código

Add tests in lab6_result:swap_fifo.c

main
ArchStacker hace 9 años
padre
commit
44fc7502e2
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. +7
    -0
      labcodes_answer/lab6_result/kern/mm/swap_fifo.c

+ 7
- 0
labcodes_answer/lab6_result/kern/mm/swap_fifo.c Ver fichero

@ -110,6 +110,13 @@ _fifo_check_swap(void) {
cprintf("write Virt Page d in fifo_check_swap\n");
*(unsigned char *)0x4000 = 0x0d;
assert(pgfault_num==9);
cprintf("write Virt Page e in fifo_check_swap\n");
*(unsigned char *)0x5000 = 0x0e;
assert(pgfault_num==10);
cprintf("write Virt Page a in fifo_check_swap\n");
assert(*(unsigned char *)0x1000 == 0x0a);
*(unsigned char *)0x1000 = 0x0a;
assert(pgfault_num==11);
return 0;
}

Cargando…
Cancelar
Guardar