Skip to content

Commit

Permalink
tests/datawizard/interfaces/multiformat/multiformat_interface.c: cann…
Browse files Browse the repository at this point in the history
…ot run without CPUs
  • Loading branch information
nfurmento committed Oct 9, 2024
1 parent 3380a38 commit 175fa67
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,11 @@ int main(int argc, char **argv)
ret = starpu_initialize(&conf, &argc, &argv);
if (ret == -ENODEV) return STARPU_TEST_SKIPPED;
STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
if (starpu_cpu_worker_get_count() == 0)
{
starpu_shutdown();
return STARPU_TEST_SKIPPED;
}

register_data();

Expand Down

0 comments on commit 175fa67

Please sign in to comment.