Changeset 677

Show
Ignore:
Timestamp:
10/26/09 16:12:53 (4 weeks ago)
Author:
robl
Message:

add new testcase from Annette Koontz to exercise new CDF-5 corner case: we
can't read multiple records of a record variable if the stride between records
won't fit in an MPI_Aint

Location:
trunk/test/testcases
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/test/testcases/Makefile.in

    r651 r677  
    99CC              = @MPICC@ 
    1010CFLAGS          = @CFLAGS@ $(INCLUDES)  
     11FC              = @MPIF77@ 
     12FFLAGS          = @FFLAGS@ $(INCLUDES) -I../../src/libf 
    1113 
    1214SRCS            = $(srcdir)/ncmpi_vars_null_stride.c 
    13 OBJS            = $(SRCS:.c=.o) 
    14 PROGS           = ncmpi_vars_null_stride vectors 
     15PROGS           = ncmpi_vars_null_stride vectors bigrecords 
    1516LDFLAGS         = -L$(LIBDIR) @LDFLAGS@ 
    1617LIBS            = -lpnetcdf @LIBS@ 
     
    1819.c.o: 
    1920        $(CC) $(CFLAGS) -c $< 
     21.F.o: 
     22        $(FC) $(FFLAGS) -c $< 
    2023 
    2124all:            $(PROGS) 
     
    2629vectors: vectors.o 
    2730        $(CC) -o $@ $@.o $(LDFLAGS) $(LIBS) 
     31 
     32bigrecords: bigrecords.o 
     33        $(FC) -o $@ $@.o $(LDFLAGS) $(LIBS) 
    2834clean: 
    29                 rm -f $(OBJS) $(PROGS) *.nc 
     35                rm -f *.o $(PROGS) *.nc 
    3036 
    3137test: ncmpi_vars_null_stride