From 8c6302f1233915a361ac7be1f0ff4a8fc20b2c40 Mon Sep 17 00:00:00 2001 From: Roland Kaufmann Date: Thu, 24 Jan 2013 12:39:18 +0100 Subject: [PATCH] Restructure tests directory to unit tests Every program that relies on manual inspection has been moved to a new (hopefully short-lived) directory called not-unit/; every remaining file has been given the prefix test_ to indicate that this is the executable test to be run. --- tests/{ => not-unit}/bo_resprop_test.cpp | 0 tests/{ => not-unit}/monotcubicinterpolator_test.cpp | 0 tests/{ => not-unit}/pvt_test.cpp | 0 tests/{ => not-unit}/relperm_test.cpp | 0 tests/{ => not-unit}/test_agmg.cpp | 0 tests/{ => not-unit}/test_cartgrid.cpp | 0 tests/{ => not-unit}/test_cfs_tpfa.c | 0 tests/{ => not-unit}/test_ert.cpp | 0 tests/{ => not-unit}/test_jacsys.cpp | 0 tests/{ => not-unit}/test_lapack.cpp | 0 tests/{ => not-unit}/test_read_grid.c | 0 tests/{ => not-unit}/test_read_vag.cpp | 0 tests/{ => not-unit}/test_readpolymer.cpp | 0 tests/{ => not-unit}/test_sf2p.cpp | 0 tests/{ => not-unit}/test_writeVtkData.cpp | 0 tests/{ => not-unit}/unit_test.cpp | 0 tests/{param_test.cpp => test_param.cpp} | 0 tests/{sparsetable_test.cpp => test_sparsetable.cpp} | 0 tests/{sparsevector_test.cpp => test_sparsevector.cpp} | 0 19 files changed, 0 insertions(+), 0 deletions(-) rename tests/{ => not-unit}/bo_resprop_test.cpp (100%) rename tests/{ => not-unit}/monotcubicinterpolator_test.cpp (100%) rename tests/{ => not-unit}/pvt_test.cpp (100%) rename tests/{ => not-unit}/relperm_test.cpp (100%) rename tests/{ => not-unit}/test_agmg.cpp (100%) rename tests/{ => not-unit}/test_cartgrid.cpp (100%) rename tests/{ => not-unit}/test_cfs_tpfa.c (100%) rename tests/{ => not-unit}/test_ert.cpp (100%) rename tests/{ => not-unit}/test_jacsys.cpp (100%) rename tests/{ => not-unit}/test_lapack.cpp (100%) rename tests/{ => not-unit}/test_read_grid.c (100%) rename tests/{ => not-unit}/test_read_vag.cpp (100%) rename tests/{ => not-unit}/test_readpolymer.cpp (100%) rename tests/{ => not-unit}/test_sf2p.cpp (100%) rename tests/{ => not-unit}/test_writeVtkData.cpp (100%) rename tests/{ => not-unit}/unit_test.cpp (100%) rename tests/{param_test.cpp => test_param.cpp} (100%) rename tests/{sparsetable_test.cpp => test_sparsetable.cpp} (100%) rename tests/{sparsevector_test.cpp => test_sparsevector.cpp} (100%) diff --git a/tests/bo_resprop_test.cpp b/tests/not-unit/bo_resprop_test.cpp similarity index 100% rename from tests/bo_resprop_test.cpp rename to tests/not-unit/bo_resprop_test.cpp diff --git a/tests/monotcubicinterpolator_test.cpp b/tests/not-unit/monotcubicinterpolator_test.cpp similarity index 100% rename from tests/monotcubicinterpolator_test.cpp rename to tests/not-unit/monotcubicinterpolator_test.cpp diff --git a/tests/pvt_test.cpp b/tests/not-unit/pvt_test.cpp similarity index 100% rename from tests/pvt_test.cpp rename to tests/not-unit/pvt_test.cpp diff --git a/tests/relperm_test.cpp b/tests/not-unit/relperm_test.cpp similarity index 100% rename from tests/relperm_test.cpp rename to tests/not-unit/relperm_test.cpp diff --git a/tests/test_agmg.cpp b/tests/not-unit/test_agmg.cpp similarity index 100% rename from tests/test_agmg.cpp rename to tests/not-unit/test_agmg.cpp diff --git a/tests/test_cartgrid.cpp b/tests/not-unit/test_cartgrid.cpp similarity index 100% rename from tests/test_cartgrid.cpp rename to tests/not-unit/test_cartgrid.cpp diff --git a/tests/test_cfs_tpfa.c b/tests/not-unit/test_cfs_tpfa.c similarity index 100% rename from tests/test_cfs_tpfa.c rename to tests/not-unit/test_cfs_tpfa.c diff --git a/tests/test_ert.cpp b/tests/not-unit/test_ert.cpp similarity index 100% rename from tests/test_ert.cpp rename to tests/not-unit/test_ert.cpp diff --git a/tests/test_jacsys.cpp b/tests/not-unit/test_jacsys.cpp similarity index 100% rename from tests/test_jacsys.cpp rename to tests/not-unit/test_jacsys.cpp diff --git a/tests/test_lapack.cpp b/tests/not-unit/test_lapack.cpp similarity index 100% rename from tests/test_lapack.cpp rename to tests/not-unit/test_lapack.cpp diff --git a/tests/test_read_grid.c b/tests/not-unit/test_read_grid.c similarity index 100% rename from tests/test_read_grid.c rename to tests/not-unit/test_read_grid.c diff --git a/tests/test_read_vag.cpp b/tests/not-unit/test_read_vag.cpp similarity index 100% rename from tests/test_read_vag.cpp rename to tests/not-unit/test_read_vag.cpp diff --git a/tests/test_readpolymer.cpp b/tests/not-unit/test_readpolymer.cpp similarity index 100% rename from tests/test_readpolymer.cpp rename to tests/not-unit/test_readpolymer.cpp diff --git a/tests/test_sf2p.cpp b/tests/not-unit/test_sf2p.cpp similarity index 100% rename from tests/test_sf2p.cpp rename to tests/not-unit/test_sf2p.cpp diff --git a/tests/test_writeVtkData.cpp b/tests/not-unit/test_writeVtkData.cpp similarity index 100% rename from tests/test_writeVtkData.cpp rename to tests/not-unit/test_writeVtkData.cpp diff --git a/tests/unit_test.cpp b/tests/not-unit/unit_test.cpp similarity index 100% rename from tests/unit_test.cpp rename to tests/not-unit/unit_test.cpp diff --git a/tests/param_test.cpp b/tests/test_param.cpp similarity index 100% rename from tests/param_test.cpp rename to tests/test_param.cpp diff --git a/tests/sparsetable_test.cpp b/tests/test_sparsetable.cpp similarity index 100% rename from tests/sparsetable_test.cpp rename to tests/test_sparsetable.cpp diff --git a/tests/sparsevector_test.cpp b/tests/test_sparsevector.cpp similarity index 100% rename from tests/sparsevector_test.cpp rename to tests/test_sparsevector.cpp