tests/checkasm: Add report to tests missing them

Reviewed-by: Kacper Michajłow <kasper93@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2026-01-02 23:19:16 +01:00
parent 10b9984e59
commit 25c7f91256
7 changed files with 9 additions and 0 deletions

View File

@@ -116,4 +116,5 @@ static void check_cavs_qpeldsp(void)
void checkasm_check_cavsdsp(void)
{
check_cavs_qpeldsp();
report("qpeldsp");
}

View File

@@ -118,4 +118,5 @@ void checkasm_check_hpeldsp(void)
}
}
}
report("hpeldsp");
}

View File

@@ -269,5 +269,6 @@ void checkasm_check_mpegvideo_unquantize(void)
bench_new(&new, block_new, n, qscale);
}
report("%s", tests[i].name);
}
}

View File

@@ -105,4 +105,5 @@ void checkasm_check_qpeldsp(void)
}
}
}
report("mpeg4_qpeldsp");
}

View File

@@ -165,6 +165,9 @@ static void check_column_fidct(void)
void checkasm_check_vf_fspp(void)
{
check_store_slice();
report("store_slice");
check_mul_thrmat();
report("mul_thrmat");
check_column_fidct();
report("column_fidct");
}

View File

@@ -113,4 +113,5 @@ static void vp3_check_loop_filter(void)
void checkasm_check_vp3dsp(void)
{
vp3_check_loop_filter();
report("loop_filter");
}

View File

@@ -90,4 +90,5 @@ void checkasm_check_vp6dsp(void)
fail();
bench_new(dst_new, src, stride, h_weights, v_weights);
}
report("filter_diag4");
}