1
1

test/datatype: temporarily disable ddt_pack test

This test needs to be tweaked to not use MPI_Init (and only use
opal_init_util(), per #568).  @ggouaillardet can't get to this until
next week sometime, so we're just temporarily disabling it for now.

Fixes #568
Этот коммит содержится в:
Jeff Squyres 2015-05-02 03:53:08 -07:00
родитель 32506009c5
Коммит b25a7bfe14

Просмотреть файл

@ -2,7 +2,7 @@
# Copyright (c) 2004-2009 The University of Tennessee and The University
# of Tennessee Research Foundation. All rights
# reserved.
# Copyright (c) 2006-2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2006-2015 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
# Copyright (c) 2014 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
@ -14,7 +14,7 @@
#
if PROJECT_OMPI
MPI_TESTS = checksum position position_noncontig ddt_test ddt_raw unpack_ooo ddt_pack
MPI_TESTS = checksum position position_noncontig ddt_test ddt_raw unpack_ooo
MPI_CHECKS = to_self
endif
TESTS = opal_datatype_test $(MPI_TESTS)
@ -33,9 +33,13 @@ ddt_raw_SOURCES = ddt_raw.c ddt_lib.c ddt_lib.h
ddt_raw_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
ddt_raw_LDADD = $(top_builddir)/ompi/libmpi.la
ddt_pack_SOURCES = ddt_pack.c
ddt_pack_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
ddt_pack_LDADD = $(top_builddir)/ompi/libmpi.la
# Temporarily removed, per
# https://github.com/open-mpi/ompi-release/pull/267. This test needs
# to be revised to not call MPI_Init (it needs to only call
# opal_init_util).
#ddt_pack_SOURCES = ddt_pack.c
#ddt_pack_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
#ddt_pack_LDADD = $(top_builddir)/ompi/libmpi.la
checksum_SOURCES = checksum.c
checksum_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)