Commit 875e659a authored by Ignacio Losiggio's avatar Ignacio Losiggio
Browse files

manchas: Valgrind tiene un bug que nos obliga a modificar el código de...

manchas: Valgrind tiene un bug que nos obliga a modificar el código de Manchas_simple. Integrado a la testsuite de la cátedra.
parent 57ef2767
......@@ -278,7 +278,7 @@ Manchas_simple:
jnz .x_loop
; Ya me movi todo un row => decremento los verticales
dec r15
dec r15d
; Si ya llegue abajo del todo salgo, si no repito
jnz .y_loop
......
......@@ -21,6 +21,10 @@ for imagen in archivos:
ok = verificar('Manchas', '100', 5, 'mvec', imagen)
todos_ok = todos_ok and ok
for imagen in archivos:
ok = verificar('Manchas', '100', 5, 'simple', imagen)
todos_ok = todos_ok and ok
if todos_ok:
print(colored("Test de filtros finalizados correctamente", 'green'))
else:
......
......@@ -55,10 +55,10 @@ for s in ${SIZESMEM[*]}; do
if [ $ret -ne 0 ]; then exit -1; fi
done
#for s in ${SIZESMEM[*]}; do
# run_test "$TP2ALU" Manchas simple "$TESTINDIR/$img1.$s.bmp" "100"
# if [ $ret -ne 0 ]; then exit -1; fi
#done
for s in ${SIZESMEM[*]}; do
run_test "$TP2ALU" Manchas simple "$TESTINDIR/$img1.$s.bmp" "100"
if [ $ret -ne 0 ]; then exit -1; fi
done
for s in ${SIZESMEM[*]}; do
run_test "$TP2ALU" Manchas mvec "$TESTINDIR/$img1.$s.bmp" "100"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment