#include <sys/stat.h>
#include <test_stat_file.c>
void
test_stat_root(char *url)
{
struct ftpstat fs;
test_login(url);
test_stat_aux("/", &fs, 1);
if (! S_ISDIR(fs.fs_mode))
{
fprintf(stderr, "S_ISDIR() is false for \"/\"!\n");
exit(1);
}
}