Suite: fix scenarios lookup when many paths are given

master
Daniel Zaoui 5 years ago
parent 4890fd01f7
commit 9506ce55e8
  1. 8
      src/bin/exactness.c

@ -183,9 +183,11 @@ _run_test_compare(const List_Entry *ent)
else
{
sprintf(path, "%s/%s.rec", base_dir, ent->name);
if (!ecore_file_exists(path)) return;
sprintf(origdir, "%s/%s", _dest_dir, ORIG_SUBDIR);
goto found;
if (ecore_file_exists(path))
{
sprintf(origdir, "%s/%s", _dest_dir, ORIG_SUBDIR);
goto found;
}
}
}
found:

Loading…
Cancel
Save