UNIX like system. We need to improve it.
Now all bsdcpio tests passed.
Results are:
0 of 22 tests reported failures
Total of 675 assertions checked.
Total of 0 assertions failed.
Total of 1 assertions skipped.
SVN-Revision: 773
DEFINE_TEST(test_owner_parse)
{
+#if defined(_WIN32) && !defined(__CYGWIN__)
+ /* TODO: Does this need cygwin style handling of uid/gid ? */
+ skipping("Windows cannot handle uid/gid as UNIX like system");
+#else
int uid, gid;
cpio_progname = "Ignore this message";
assertEqualInt(1, owner_parse("root:nonexistentgroup", &uid, &gid));
assertEqualInt(1,
owner_parse("nonexistentuser:nonexistentgroup", &uid, &gid));
+#endif
}