summaryrefslogtreecommitdiffstats
path: root/Tests/OutDir/OutDir.c
blob: 4f6ae877c1c2d046f0471aa23541ebd08165f6cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <OutDir.h>
#include <stdio.h>

int main(void)
{
  const char* files[] = { TESTC1_LIB, TESTC2_LIB, CONLY_EXE, 0 };
  int result = 0;
  const char** fname = files;
  for (; *fname; ++fname) {
    FILE* f = fopen(*fname, "rb");
    if (f) {
      printf("found: [%s]\n", *fname);
      fclose(f);
    } else {
      printf("error: [%s]\n", *fname);
      result = 1;
    }
  }
  return result;
}