Commit 449aa717 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Removed useless using namespace declaration from DistributedGrid tests

It caused a weird compiler error when compiled with g++ -Werror.
parent 688e3bd1
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -17,7 +17,6 @@
using namespace TNL::Containers;
using namespace TNL::Meshes;
using namespace TNL::Functions;
using namespace TNL::Devices;
using namespace TNL::Communicators;
using namespace TNL::Meshes::DistributedMeshes;

+6 −6
Original line number Diff line number Diff line
@@ -15,32 +15,32 @@

TEST( DistributedGridIO, Save_1D )
{
    TestDistributedGridIO<1,Host>::TestSave();
    TestDistributedGridIO<1,Devices::Host>::TestSave();
}

TEST( DistributedGridIO, Save_2D )
{
    TestDistributedGridIO<2,Host>::TestSave();
    TestDistributedGridIO<2,Devices::Host>::TestSave();
}

TEST( DistributedGridIO, Save_3D )
{
    TestDistributedGridIO<3,Host>::TestSave();
    TestDistributedGridIO<3,Devices::Host>::TestSave();
}

TEST( DistributedGridIO, Load_1D )
{
    TestDistributedGridIO<1,Host>::TestLoad();
    TestDistributedGridIO<1,Devices::Host>::TestLoad();
}

TEST( DistributedGridIO, Load_2D )
{
    TestDistributedGridIO<2,Host>::TestLoad();
    TestDistributedGridIO<2,Devices::Host>::TestLoad();
}

TEST( DistributedGridIO, Load_3D )
{
    TestDistributedGridIO<3,Host>::TestLoad();
    TestDistributedGridIO<3,Devices::Host>::TestLoad();
}

#ifdef HAVE_CUDA
+0 −1
Original line number Diff line number Diff line
@@ -23,7 +23,6 @@
using namespace TNL::Containers;
using namespace TNL::Meshes;
using namespace TNL::Functions;
using namespace TNL::Devices;
using namespace TNL::Communicators;
using namespace TNL::Meshes::DistributedMeshes;

+6 −6
Original line number Diff line number Diff line
@@ -13,32 +13,32 @@

TEST( DistributedGridMPIIO, Save_1D )
{
    TestDistributedGridMPIIO<1,Host>::TestSave();
    TestDistributedGridMPIIO<1,Devices::Host>::TestSave();
}

TEST( DistributedGridMPIIO, Save_2D )
{
    TestDistributedGridMPIIO<2,Host>::TestSave();
    TestDistributedGridMPIIO<2,Devices::Host>::TestSave();
}

TEST( DistributedGridMPIIO, Save_3D )
{
    TestDistributedGridMPIIO<3,Host>::TestSave();
    TestDistributedGridMPIIO<3,Devices::Host>::TestSave();
}

TEST( DistributedGridMPIIO, Load_1D )
{
    TestDistributedGridMPIIO<1,Host>::TestLoad();
    TestDistributedGridMPIIO<1,Devices::Host>::TestLoad();
}

TEST( DistributedGridMPIIO, Load_2D )
{
    TestDistributedGridMPIIO<2,Host>::TestLoad();
    TestDistributedGridMPIIO<2,Devices::Host>::TestLoad();
}

TEST( DistributedGridMPIIO, Load_3D )
{
    TestDistributedGridMPIIO<3,Host>::TestLoad();
    TestDistributedGridMPIIO<3,Devices::Host>::TestLoad();
}

#ifdef HAVE_CUDA