Module Name:    src
Committed By:   jakllsch
Date:           Thu May  5 16:55:56 UTC 2016

Modified Files:
        src/tests/dev/usb: t_hid.c

Log Message:
t_hid doesn't use rump correctly, and thus consistently fails; mark as such


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/dev/usb/t_hid.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tests/dev/usb/t_hid.c
diff -u src/tests/dev/usb/t_hid.c:1.6 src/tests/dev/usb/t_hid.c:1.7
--- src/tests/dev/usb/t_hid.c:1.6	Mon May  2 17:24:06 2016
+++ src/tests/dev/usb/t_hid.c	Thu May  5 16:55:56 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_hid.c,v 1.6 2016/05/02 17:24:06 jakllsch Exp $	*/
+/*	$NetBSD: t_hid.c,v 1.7 2016/05/05 16:55:56 jakllsch Exp $	*/
 
 /*
  * Copyright (c) 2016 Jonathan A. Kollasch
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_hid.c,v 1.6 2016/05/02 17:24:06 jakllsch Exp $");
+__RCSID("$NetBSD: t_hid.c,v 1.7 2016/05/05 16:55:56 jakllsch Exp $");
 
 #include <machine/types.h>
 #include <stdlib.h>
@@ -105,6 +105,8 @@ ATF_TC_BODY(khid, tc)
 	int ret;
 	struct hid_item hi;
 
+	atf_tc_expect_fail("test case does not use rump correctly");
+
 	uhidevdebug = 0;
 
 	rump_init();
@@ -239,6 +241,8 @@ ATF_TC_BODY(khid_parse_just_pop, tc)
 	struct hid_data *hdp;
 	struct hid_item hi;
 
+	atf_tc_expect_fail("test case does not use rump correctly");
+
 	rump_init();
 
 	hdp = hid_start_parse(just_pop_report_descriptor,

Reply via email to