11be35a165
To do so, a few dependencies have been imported: * external/bsd/lutok * external/mit/lua * external/public-domain/sqlite * external/public-domain/xz The Kyua framework is the new generation of ATF (Automated Test Framework), it is composed of: * external/bsd/atf * external/bsd/kyua-atf-compat * external/bsd/kyua-cli * external/bsd/kyua-tester * tests Kyua/ATF being written in C++, it depends on libstdc++ which is provided by GCC. As this is not part of the sources, Kyua is only compiled when the native GCC utils are installed. To install Kyua do the following: * In a cross-build enviromnent, add the following to the build.sh commandline: -V MKBINUTILS=yes -V MKGCCCMDS=yes WARNING: At this point the import is still experimental, and not supported on native builds (a.k.a make build). Change-Id: I26aee23c5bbd2d64adcb7c1beb98fe0d479d7ada
60 lines
1.3 KiB
C
60 lines
1.3 KiB
C
/* $NetBSD: t_pr.c,v 1.6 2011/02/22 18:41:05 pooka Exp $ */
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/mount.h>
|
|
|
|
#include <atf-c.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <limits.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#include <rump/rump.h>
|
|
#include <rump/rump_syscalls.h>
|
|
|
|
#include <ufs/ufs/ufsmount.h>
|
|
|
|
#include "../../h_macros.h"
|
|
|
|
ATF_TC(mknod);
|
|
ATF_TC_HEAD(mknod, tc)
|
|
{
|
|
|
|
atf_tc_set_md_var(tc, "descr", "mknod(2) hangs on LFS (PR kern/43503)");
|
|
atf_tc_set_md_var(tc, "timeout", "20");
|
|
}
|
|
|
|
#define IMGNAME "disk.img"
|
|
#define FAKEBLK "/dev/blk"
|
|
ATF_TC_BODY(mknod, tc)
|
|
{
|
|
struct ufs_args args;
|
|
|
|
/* hmm, maybe i should fix newfs_lfs instead? */
|
|
if (system("newfs_lfs -D -F -s 10000 ./" IMGNAME) == -1)
|
|
atf_tc_fail_errno("newfs failed");
|
|
|
|
memset(&args, 0, sizeof(args));
|
|
args.fspec = __UNCONST(FAKEBLK);
|
|
|
|
rump_init();
|
|
if (rump_sys_mkdir("/mp", 0777) == -1)
|
|
atf_tc_fail_errno("cannot create mountpoint");
|
|
rump_pub_etfs_register(FAKEBLK, IMGNAME, RUMP_ETFS_BLK);
|
|
if (rump_sys_mount(MOUNT_LFS, "/mp", 0, &args, sizeof(args)) == -1)
|
|
atf_tc_fail_errno("rump_sys_mount failed");
|
|
|
|
//atf_tc_expect_timeout("PR kern/43503");
|
|
if (rump_sys_mknod("/mp/node", S_IFCHR | 0777, 0) == -1)
|
|
atf_tc_fail_errno("mknod failed");
|
|
}
|
|
|
|
ATF_TP_ADD_TCS(tp)
|
|
{
|
|
|
|
ATF_TP_ADD_TC(tp, mknod);
|
|
return 0;
|
|
}
|