Skip to content

Commit

Permalink
Tests: test_fstype: / is not always mounted in obs workers
Browse files Browse the repository at this point in the history
It seems that only /proc is always mounted and testable in the
obs workers. So we removed the test for "/" so that the
builds don't fail anymore
  • Loading branch information
pstorz committed Mar 20, 2017
1 parent 860863b commit 9e5d0f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/findlib/unittests/fstype_test.c
Expand Up @@ -42,7 +42,7 @@ void test_fstype(void **state) {
#ifdef HAVE_WIN32
char *fs_to_check[] = {"/", "c:/", NULL};
#else
char *fs_to_check[] = {"/", "/proc", NULL};
char *fs_to_check[] = {"/proc", NULL};
#endif
char fs[1000];

Expand Down

0 comments on commit 9e5d0f6

Please sign in to comment.