Module Name:    src
Committed By:   riastradh
Date:           Sun May  5 14:34:58 UTC 2024

Modified Files:
        src/tests/lib/libm: t_next.c

Log Message:
tests/lib/libm/t_next: Fix stub on VAX.

Tested building the wrong tree, oops.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libm/t_next.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/lib/libm/t_next.c
diff -u src/tests/lib/libm/t_next.c:1.2 src/tests/lib/libm/t_next.c:1.3
--- src/tests/lib/libm/t_next.c:1.2	Sun May  5 14:29:38 2024
+++ src/tests/lib/libm/t_next.c	Sun May  5 14:34:58 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_next.c,v 1.2 2024/05/05 14:29:38 riastradh Exp $	*/
+/*	$NetBSD: t_next.c,v 1.3 2024/05/05 14:34:58 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 2024 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_next.c,v 1.2 2024/05/05 14:29:38 riastradh Exp $");
+__RCSID("$NetBSD: t_next.c,v 1.3 2024/05/05 14:34:58 riastradh Exp $");
 
 #include <atf-c.h>
 #include <float.h>
@@ -35,11 +35,16 @@ __RCSID("$NetBSD: t_next.c,v 1.2 2024/05
 
 #ifdef __vax__		/* XXX PR 57881: vax libm is missing various symbols */
 
-ATF_TC(vaxafter)
+ATF_TC(vaxafter);
 ATF_TC_HEAD(vaxafter, tc)
 {
 
-	atf_expect_fail("PR 57881: vax libm is missing various symbols")
+	atf_tc_set_md_var(tc, "descr", "vax nextafter/nexttoward reminder");
+}
+ATF_TC_BODY(vaxafter, tc)
+{
+
+	atf_tc_expect_fail("PR 57881: vax libm is missing various symbols");
 	atf_tc_fail("missing nextafter{,f,l} and nexttoward{,f,l} on vax");
 }
 

Reply via email to