Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/lib/libc/sys Oops, accidentally #if 0'd some tests, pr...



details:   https://anonhg.NetBSD.org/src/rev/3eb852eb0fe4
branches:  trunk
changeset: 931838:3eb852eb0fe4
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Fri May 01 01:44:30 2020 +0000

description:
Oops, accidentally #if 0'd some tests, probably while debugging
something else.  Correct this silly mistake.

diffstat:

 tests/lib/libc/sys/t_futex_robust.c |  6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diffs (31 lines):

diff -r d07efd424ff1 -r 3eb852eb0fe4 tests/lib/libc/sys/t_futex_robust.c
--- a/tests/lib/libc/sys/t_futex_robust.c       Fri May 01 01:34:57 2020 +0000
+++ b/tests/lib/libc/sys/t_futex_robust.c       Fri May 01 01:44:30 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_futex_robust.c,v 1.1 2020/04/26 18:53:33 thorpej Exp $ */
+/* $NetBSD: t_futex_robust.c,v 1.2 2020/05/01 01:44:30 thorpej Exp $ */
 
 /*-
  * Copyright (c) 2019 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
 #include <sys/cdefs.h>
 __COPYRIGHT("@(#) Copyright (c) 2019\
  The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: t_futex_robust.c,v 1.1 2020/04/26 18:53:33 thorpej Exp $");
+__RCSID("$NetBSD: t_futex_robust.c,v 1.2 2020/05/01 01:44:30 thorpej Exp $");
 
 #include <sys/mman.h>
 #include <errno.h>
@@ -396,12 +396,10 @@
 
 ATF_TP_ADD_TCS(tp)
 {
-#if 0
        ATF_TP_ADD_TC(tp, futex_robust_positive);
        ATF_TP_ADD_TC(tp, futex_robust_negative);
        ATF_TP_ADD_TC(tp, futex_robust_unmapped);
        ATF_TP_ADD_TC(tp, futex_robust_evil_circular);
-#endif
        ATF_TP_ADD_TC(tp, futex_robust_bad_pending);
 
        return atf_no_error();



Home | Main Index | Thread Index | Old Index