changeset 11907:dffcdc89ae7e

Remove test that is outside the specification.
author Bruno Haible <bruno@clisp.org>
date Thu, 27 Aug 2009 23:31:13 +0200
parents 6b25bda86ddb
children 94b171ede586
files ChangeLog tests/test-bitrotate.c
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-08-27  Bruno Haible  <bruno@clisp.org>
+
+	* tests/test-bitrotate.c (main): Remove test that uses a shift count
+	of 0.
+
 2009-08-27  Bruno Haible  <bruno@clisp.org>
 
 	* tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
--- a/tests/test-bitrotate.c
+++ b/tests/test-bitrotate.c
@@ -1,5 +1,5 @@
 /* Test of <bitrotate.h> substitute.
-   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+   Copyright (C) 2007-2009 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -224,7 +224,6 @@
   ASSERT (rotl64 (16045690984503098046ULL, 62) == 13234794782980550319ULL);
   ASSERT (rotl64 (16045690984503098046ULL, 63) == 8022845492251549023ULL);
 
-  ASSERT (rotr64 (16045690984503098046ULL, 0) == 16045690984503098046ULL);
   ASSERT (rotr64 (16045690984503098046ULL, 1) == 8022845492251549023ULL);
   ASSERT (rotr64 (16045690984503098046ULL, 2) == 13234794782980550319ULL);
   ASSERT (rotr64 (16045690984503098046ULL, 3) == 15840769428345050967ULL);