Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion tests/unit/ax/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: ax_test

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


ax_test_TESTS := test_ax_factory.pf
ax_test_OTHER_LIBRARIES = -L@top_builddir@/src/.libs/ -lneko @LDFLAGS@ @LIBS@
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/bc/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,23 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<

mesh_fixture.o : ../fixtures/mesh_fixture.f90
$(FC) -c $(FFLAGS) -o mesh_fixture.o $<
mesh_fixture.mod : mesh_fixture.o

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


check: bc_suite

Expand Down
12 changes: 11 additions & 1 deletion tests/unit/bc_projector/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<

../fixtures/mesh_fixture.o : ../fixtures/mesh_fixture.f90
Expand All @@ -14,6 +17,13 @@ FC = @FC@

check: bc_projector_suite

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


bc_projector_suite_TESTS := test_bc_projector.pf\
test_coupled_bc_projector.pf
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/boundary_operation/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: boundary_operation_suite

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


boundary_operation_suite_TESTS := test_boundary_operation.pf
boundary_operation_suite_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/case_file_utils/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: case_file_utils_test

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile

case_file_utils_test_TESTS := test_case_file_utils.pf
case_file_utils_test_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
$(eval $(call make_pfunit_test,case_file_utils_test))
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/crystal_router/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: crystal_router_test

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


crystal_router_test_TESTS := test_crystal_router_parallel.pf
crystal_router_test_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/data_types/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: data_types_test

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


data_types_test_TESTS := test_host_array_types.pf \
test_device_array_types.pf
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/device/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: device_test

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


device_test_TESTS := test_device.pf
device_test_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/device_math/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: device_math_suite

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


device_math_suite_TESTS := test_device_math_parallel.pf
device_math_suite_OTHER_LIBRARIES = -L@top_builddir@/src/.libs/ -lneko @LDFLAGS@ @LIBS@
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/device_mathops/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: device_mathops_test

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


device_mathops_test_TESTS := test_device_mathops.pf
device_mathops_test_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/dofmap/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: dofmap_suite

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


dofmap_suite_TESTS := test_dofmap_parallel.pf
dofmap_suite_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/expression/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: expression_test

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile

expression_test_TESTS := test_expression.pf
expression_test_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
$(eval $(call make_pfunit_test,expression_test))
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/fast3d/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: fast3d_test

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile

fast3d_test_TESTS := test_fd_weights_full.pf\
test_setup_intp.pf
fast3d_test_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/field/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: field_suite

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


field_suite_TESTS := test_field_parallel.pf
field_suite_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
Expand Down
12 changes: 11 additions & 1 deletion tests/unit/gather_scatter/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,22 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: gather_scatter_suite

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


gather_scatter_suite_TESTS := test_gather_scatter_parallel.pf
gather_scatter_suite_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
Expand Down
14 changes: 12 additions & 2 deletions tests/unit/global_interpolation/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,25 @@ endif
FFLAGS += $(PFUNIT_EXTRA_FFLAGS) @NEKO_PKG_FCFLAGS@ -I@top_builddir@/src
FC = @FC@

%.o : %.F90
# Depend on the library so the test objects follow any change to Neko.
NEKO_LIB := $(wildcard @top_builddir@/src/libneko.la)

%.o : %.F90 $(NEKO_LIB)
$(FC) -c $(FFLAGS) $<


check: global_interpolation_suite

# Regenerate this Makefile from Makefile.in via config.status
# whenever it changes.
SUBDIR := $(patsubst $(abspath @top_builddir@)/%,%,$(CURDIR))

Makefile: Makefile.in @top_builddir@/config.status
cd @top_builddir@ && $(SHELL) ./config.status $(SUBDIR)/Makefile


global_interpolation_suite_TESTS := test_glob_interp_par.pf
global_interpolation_suite_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
global_interpolation_suite_OTHER_LIBRARIES = -L@top_builddir@/src/.libs -lneko @LDFLAGS@ @LIBS@
$(eval $(call make_pfunit_test,global_interpolation_suite))
global_interpolation_suite.inc: Makefile

Expand Down
Loading
Loading