From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20243 invoked by alias); 5 Jul 2005 08:41:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 20225 invoked by uid 48); 5 Jul 2005 08:41:35 -0000 Date: Tue, 05 Jul 2005 08:41:00 -0000 From: "tkoenig at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org Message-ID: <20050705084132.22307.tkoenig@gcc.gnu.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug libfortran/22307] New: Missing tests for actual library functions X-Bugzilla-Reason: CC X-SW-Source: 2005-07/txt/msg00409.txt.bz2 List-Id: For a number of library functions, the current tests only check what the compiler does. Look at this: $ cat ishft.f90 ! { dg-do run } ! verifies basic functioning of the ishft and ishftc intrinsics if (ishft (1_1, 0) /= 1) call abort if (ishft (1_1, 1) /= 2) call abort if (ishft (3_1, 1) /= 6) call abort if (ishft (-1_1, 1) /= -2) call abort if (ishft (-1_1, -1) /= 127) call abort if (ishft (96_1, 2) /= -128) call abort if (ishft (1_2, 0) /= 1) call abort if (ishft (1_2, 1) /= 2) call abort if (ishft (3_2, 1) /= 6) call abort if (ishft (-1_2, 1) /= -2) call abort if (ishft (-1_2, -1) /= 32767) call abort if (ishft (16384_2 + 8192_2, 2) /= -32768_4) call abort if (ishft (1_4, 0) /= 1) call abort if (ishft (1_4, 1) /= 2) call abort if (ishft (3_4, 1) /= 6) call abort if (ishft (-1_4, 1) /= -2) call abort if (ishft (-1_4, -1) /= 2147483647) call abort if (ishft (1073741824_4 + 536870912_4, 2) /= -2147483648_8) call abort if (ishft (1_8, 0) /= 1) call abort if (ishft (1_8, 1) /= 2) call abort if (ishft (3_8, 1) /= 6) call abort if (ishft (-1_8, 1) /= -2) call abort if (ishft (-1_8, -60) /= z'F') call abort if (ishftc (1_1, 0) /= 1) call abort if (ishftc (1_1, 1) /= 2) call abort if (ishftc (3_1, 1) /= 6) call abort if (ishftc (-1_1, 1) /= -1) call abort if (ishftc (-1_1, -1) /= -1) call abort if (ishftc (ishftc (96_1, 2), -2) /= 96) call abort if (ishftc (1_2, 0) /= 1) call abort if (ishftc (1_2, 1) /= 2) call abort if (ishftc (3_2, 1) /= 6) call abort if (ishftc (-1_2, 1) /= -1) call abort if (ishftc (-1_2, -1) /= -1) call abort if (ishftc (ishftc (25000_2, 2), -2) /= 25000) call abort if (ishftc (1_4, 0) /= 1) call abort if (ishftc (1_4, 1) /= 2) call abort if (ishftc (3_4, 1) /= 6) call abort if (ishftc (-1_4, 1) /= -1) call abort if (ishftc (-1_4, -1) /= -1) call abort if (ishftc (ishftc (1325876_4, 2), -2) /= 1325876) call abort if (ishftc (1_8, 0) /= 1) call abort if (ishftc (1_8, 1) /= 2) call abort if (ishftc (3_8, 1) /= 6) call abort if (ishftc (-1_8, 1) /= -1) call abort if (ishftc (-1_8, -1) /= -1) call abort if (ishftc (ishftc (1325876_8, 2), -2) /= 1325876) call abort end $ gfortran -fdump-tree-original ishft.f90 $ cat ishft.f90.t02.original MAIN__ () { (void) 0; $ gfortran -v Using built-in specs. Target: ia64-unknown-linux-gnu Configured with: ../gcc-4.1-20050702/configure --prefix=/home/zfkts --enable- languages=c,f95 Thread model: posix gcc version 4.1.0 20050702 (experimental) We need more test cases that really test the library calls. Chances are there may be a few more bugs out there like PR 22142 (which was also hidden by this). -- Summary: Missing tests for actual library functions Product: gcc Version: 4.1.0 Status: UNCONFIRMED Severity: critical Priority: P2 Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: tkoenig at gcc dot gnu dot org CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22307