From eb149cb9c883139bdfd5e0873aa342229468b2a1 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Mon, 22 May 2006 06:12:43 +0000 Subject: [PATCH] Move the datatype tests in its own directory. This commit was SVN r10003. --- configure.ac | 1 + test/Makefile.am | 2 +- test/datatype/Makefile.am | 20 ++++++++++++++++++++ {ompi => test}/datatype/ddt_test.c | 0 {ompi => test}/datatype/mpi_test.c | 0 5 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 test/datatype/Makefile.am rename {ompi => test}/datatype/ddt_test.c (100%) rename {ompi => test}/datatype/mpi_test.c (100%) diff --git a/configure.ac b/configure.ac index c3224e98cf..d329da1124 100644 --- a/configure.ac +++ b/configure.ac @@ -1151,5 +1151,6 @@ AC_CONFIG_FILES([ test/threads/Makefile test/util/Makefile test/peruse/Makefile + test/datatype/Makefile ]) AC_OUTPUT diff --git a/test/Makefile.am b/test/Makefile.am index 2cda51e62c..7ffe724508 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -19,5 +19,5 @@ # support needs to be first for dependencies -SUBDIRS = support asm class dss mca memory threads util peruse +SUBDIRS = support asm class dss mca memory threads util peruse datatype DIST_SUBDIRS = runtime $(SUBDIRS) diff --git a/test/datatype/Makefile.am b/test/datatype/Makefile.am new file mode 100644 index 0000000000..44d10a92d4 --- /dev/null +++ b/test/datatype/Makefile.am @@ -0,0 +1,20 @@ +# +# Copyright (c) 2004-2005 The University of Tennessee and The University +# of Tennessee Research Foundation. All rights +# reserved. +# $COPYRIGHT$ +# +# Additional copyrights may follow +# +# $HEADER$ +# + +check_PROGRAMS = ddt_test + +TESTS = $(check_PROGRAMS) + +ddt_test_SOURCES = ddt_test.c +ddt_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS) +ddt_test_LDADD = $(top_builddir)/ompi/libmpi.la +ddt_test_DEPENDENCIES = $(mpi_peruse_LDADD) + diff --git a/ompi/datatype/ddt_test.c b/test/datatype/ddt_test.c similarity index 100% rename from ompi/datatype/ddt_test.c rename to test/datatype/ddt_test.c diff --git a/ompi/datatype/mpi_test.c b/test/datatype/mpi_test.c similarity index 100% rename from ompi/datatype/mpi_test.c rename to test/datatype/mpi_test.c