Module Name:    src
Committed By:   rillig
Date:           Thu Sep  7 05:36:33 UTC 2023

Modified Files:
        src/usr.bin/make/unit-tests: cond-cmp-numeric-eq.mk
            cond-cmp-numeric-ge.mk cond-cmp-numeric-gt.mk
            cond-cmp-numeric-le.mk cond-cmp-numeric-lt.mk
            cond-cmp-numeric-ne.mk

Log Message:
tests/make: fix test for conditions of the form 'a > b'


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/usr.bin/make/unit-tests/cond-cmp-numeric-eq.mk
cvs rdiff -u -r1.2 -r1.3 src/usr.bin/make/unit-tests/cond-cmp-numeric-ge.mk \
    src/usr.bin/make/unit-tests/cond-cmp-numeric-gt.mk \
    src/usr.bin/make/unit-tests/cond-cmp-numeric-le.mk \
    src/usr.bin/make/unit-tests/cond-cmp-numeric-lt.mk \
    src/usr.bin/make/unit-tests/cond-cmp-numeric-ne.mk

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

Modified files:

Index: src/usr.bin/make/unit-tests/cond-cmp-numeric-eq.mk
diff -u src/usr.bin/make/unit-tests/cond-cmp-numeric-eq.mk:1.6 src/usr.bin/make/unit-tests/cond-cmp-numeric-eq.mk:1.7
--- src/usr.bin/make/unit-tests/cond-cmp-numeric-eq.mk:1.6	Thu Jun  1 20:56:35 2023
+++ src/usr.bin/make/unit-tests/cond-cmp-numeric-eq.mk	Thu Sep  7 05:36:33 2023
@@ -1,4 +1,4 @@
-# $NetBSD: cond-cmp-numeric-eq.mk,v 1.6 2023/06/01 20:56:35 rillig Exp $
+# $NetBSD: cond-cmp-numeric-eq.mk,v 1.7 2023/09/07 05:36:33 rillig Exp $
 #
 # Tests for numeric comparisons with the == operator in .if conditions.
 
@@ -40,7 +40,7 @@
 .  error
 .endif
 
-# As of 2020-08-23, numeric comparison is implemented as parsing both sides
+# Numeric comparison works by parsing both sides
 # as double, and then performing a normal comparison.  The range of double is
 # typically 16 or 17 significant digits, therefore these two numbers seem to
 # be equal.
@@ -78,6 +78,3 @@
 .else
 .  error
 .endif
-
-all:
-	@:;

Index: src/usr.bin/make/unit-tests/cond-cmp-numeric-ge.mk
diff -u src/usr.bin/make/unit-tests/cond-cmp-numeric-ge.mk:1.2 src/usr.bin/make/unit-tests/cond-cmp-numeric-ge.mk:1.3
--- src/usr.bin/make/unit-tests/cond-cmp-numeric-ge.mk:1.2	Sat Oct 24 08:46:08 2020
+++ src/usr.bin/make/unit-tests/cond-cmp-numeric-ge.mk	Thu Sep  7 05:36:33 2023
@@ -1,4 +1,4 @@
-# $NetBSD: cond-cmp-numeric-ge.mk,v 1.2 2020/10/24 08:46:08 rillig Exp $
+# $NetBSD: cond-cmp-numeric-ge.mk,v 1.3 2023/09/07 05:36:33 rillig Exp $
 #
 # Tests for numeric comparisons with the >= operator in .if conditions.
 
@@ -62,7 +62,7 @@
 .  error
 .endif
 
-# As of 2020-08-23, numeric comparison is implemented as parsing both sides
+# Numeric comparison works by parsing both sides
 # as double, and then performing a normal comparison.  The range of double is
 # typically 16 or 17 significant digits, therefore these two numbers seem to
 # be equal.
Index: src/usr.bin/make/unit-tests/cond-cmp-numeric-gt.mk
diff -u src/usr.bin/make/unit-tests/cond-cmp-numeric-gt.mk:1.2 src/usr.bin/make/unit-tests/cond-cmp-numeric-gt.mk:1.3
--- src/usr.bin/make/unit-tests/cond-cmp-numeric-gt.mk:1.2	Sat Oct 24 08:46:08 2020
+++ src/usr.bin/make/unit-tests/cond-cmp-numeric-gt.mk	Thu Sep  7 05:36:33 2023
@@ -1,4 +1,4 @@
-# $NetBSD: cond-cmp-numeric-gt.mk,v 1.2 2020/10/24 08:46:08 rillig Exp $
+# $NetBSD: cond-cmp-numeric-gt.mk,v 1.3 2023/09/07 05:36:33 rillig Exp $
 #
 # Tests for numeric comparisons with the > operator in .if conditions.
 
@@ -61,11 +61,11 @@
 .  error
 .endif
 
-# As of 2020-08-23, numeric comparison is implemented as parsing both sides
+# Numeric comparison works by parsing both sides
 # as double, and then performing a normal comparison.  The range of double is
 # typically 16 or 17 significant digits, therefore these two numbers seem to
 # be equal.
-.if 1.000000000000000001 > 1.000000000000000002
+.if 1.000000000000000002 > 1.000000000000000001
 .  error
 .endif
 
Index: src/usr.bin/make/unit-tests/cond-cmp-numeric-le.mk
diff -u src/usr.bin/make/unit-tests/cond-cmp-numeric-le.mk:1.2 src/usr.bin/make/unit-tests/cond-cmp-numeric-le.mk:1.3
--- src/usr.bin/make/unit-tests/cond-cmp-numeric-le.mk:1.2	Sat Oct 24 08:46:08 2020
+++ src/usr.bin/make/unit-tests/cond-cmp-numeric-le.mk	Thu Sep  7 05:36:33 2023
@@ -1,4 +1,4 @@
-# $NetBSD: cond-cmp-numeric-le.mk,v 1.2 2020/10/24 08:46:08 rillig Exp $
+# $NetBSD: cond-cmp-numeric-le.mk,v 1.3 2023/09/07 05:36:33 rillig Exp $
 #
 # Tests for numeric comparisons with the <= operator in .if conditions.
 
@@ -62,7 +62,7 @@
 .  error
 .endif
 
-# As of 2020-08-23, numeric comparison is implemented as parsing both sides
+# Numeric comparison works by parsing both sides
 # as double, and then performing a normal comparison.  The range of double is
 # typically 16 or 17 significant digits, therefore these two numbers seem to
 # be equal.
Index: src/usr.bin/make/unit-tests/cond-cmp-numeric-lt.mk
diff -u src/usr.bin/make/unit-tests/cond-cmp-numeric-lt.mk:1.2 src/usr.bin/make/unit-tests/cond-cmp-numeric-lt.mk:1.3
--- src/usr.bin/make/unit-tests/cond-cmp-numeric-lt.mk:1.2	Sat Oct 24 08:46:08 2020
+++ src/usr.bin/make/unit-tests/cond-cmp-numeric-lt.mk	Thu Sep  7 05:36:33 2023
@@ -1,4 +1,4 @@
-# $NetBSD: cond-cmp-numeric-lt.mk,v 1.2 2020/10/24 08:46:08 rillig Exp $
+# $NetBSD: cond-cmp-numeric-lt.mk,v 1.3 2023/09/07 05:36:33 rillig Exp $
 #
 # Tests for numeric comparisons with the < operator in .if conditions.
 
@@ -61,7 +61,7 @@
 .  error
 .endif
 
-# As of 2020-08-23, numeric comparison is implemented as parsing both sides
+# Numeric comparison works by parsing both sides
 # as double, and then performing a normal comparison.  The range of double is
 # typically 16 or 17 significant digits, therefore these two numbers seem to
 # be equal.
Index: src/usr.bin/make/unit-tests/cond-cmp-numeric-ne.mk
diff -u src/usr.bin/make/unit-tests/cond-cmp-numeric-ne.mk:1.2 src/usr.bin/make/unit-tests/cond-cmp-numeric-ne.mk:1.3
--- src/usr.bin/make/unit-tests/cond-cmp-numeric-ne.mk:1.2	Sat Oct 24 08:46:08 2020
+++ src/usr.bin/make/unit-tests/cond-cmp-numeric-ne.mk	Thu Sep  7 05:36:33 2023
@@ -1,4 +1,4 @@
-# $NetBSD: cond-cmp-numeric-ne.mk,v 1.2 2020/10/24 08:46:08 rillig Exp $
+# $NetBSD: cond-cmp-numeric-ne.mk,v 1.3 2023/09/07 05:36:33 rillig Exp $
 #
 # Tests for numeric comparisons with the != operator in .if conditions.
 
@@ -37,7 +37,7 @@
 .  error
 .endif
 
-# As of 2020-08-23, numeric comparison is implemented as parsing both sides
+# Numeric comparison works by parsing both sides
 # as double, and then performing a normal comparison.  The range of double is
 # typically 16 or 17 significant digits, therefore these two numbers seem to
 # be equal.

Reply via email to