Skip to content
Snippets Groups Projects
Commit 3bac4a3b authored by Atkins, Charles Vernon's avatar Atkins, Charles Vernon
Browse files

Fix typos in engine tests

parent 1fd05e99
No related branches found
No related tags found
1 merge request!93Fix typos in engine tests
/*
* Distributed under the OSI-approved Apache License, Version 2.0. See
* accompanying file Copyright.txt for details.
*/
#include <cstdint>
#include <iostream>
......
/*
* Distributed under the OSI-approved Apache License, Version 2.0. See
* accompanying file Copyright.txt for details.
*/
#include <cstdint>
#include <iostream>
......@@ -20,7 +24,7 @@ public:
//******************************************************************************
// 1D 1x8 test data
//******************************************************************************
TEST_F(BPWriteReadTest, ADIOS2ADIOS2WriteADIOS1Read1D8)
TEST_F(BPWriteReadTest, ADIOS2BPWriteADIOS1Read1D8)
{
{
adios::ADIOS adios(adios::Verbose::WARN, true);
......@@ -48,8 +52,7 @@ TEST_F(BPWriteReadTest, ADIOS2ADIOS2WriteADIOS1Read1D8)
method.SetEngine("BPFileWriter");
method.AddTransport("File");
auto engine =
adios.Open("ADIOS2ADIOS2WriteADIOS1Read1D8.bp", "w", method);
auto engine = adios.Open("ADIOS2BPWriteADIOS1Read1D8.bp", "w", method);
ASSERT_NE(engine, nullptr);
for (size_t step = 0; step < 3; ++step)
......@@ -90,7 +93,7 @@ TEST_F(BPWriteReadTest, ADIOS2ADIOS2WriteADIOS1Read1D8)
//******************************************************************************
// 2D 2x4 test data
//******************************************************************************
TEST_F(BPWriteReadTest, ADIOS2ADIOS2WriteADIOS1Read2D2x4)
TEST_F(BPWriteReadTest, ADIOS2BPWriteADIOS1Read2D2x4)
{
{
adios::ADIOS adios(adios::Verbose::WARN, true);
......@@ -164,7 +167,7 @@ TEST_F(BPWriteReadTest, ADIOS2ADIOS2WriteADIOS1Read2D2x4)
//******************************************************************************
// 2D 4x2 test data
//******************************************************************************
TEST_F(BPWriteReadTest, ADIOS2ADIOS2WriteADIOS1Read2D4x2)
TEST_F(BPWriteReadTest, ADIOS2BPWriteADIOS1Read2D4x2)
{
{
adios::ADIOS adios(adios::Verbose::WARN, true);
......
/*
* Distributed under the OSI-approved Apache License, Version 2.0. See
* accompanying file Copyright.txt for details.
*/
#include <cstdint>
#include <iostream>
......@@ -20,7 +24,7 @@ public:
//******************************************************************************
// 1D 1x8 test data
//******************************************************************************
TEST_F(HDF5WriteReadTest, ADIOS2ADIOS2WriteADIOS1Read1D8)
TEST_F(HDF5WriteReadTest, ADIOS2HDF5WriteHDF5Read1D8)
{
{
adios::ADIOS adios(adios::Verbose::WARN, true);
......@@ -48,8 +52,7 @@ TEST_F(HDF5WriteReadTest, ADIOS2ADIOS2WriteADIOS1Read1D8)
method.SetEngine("HDF5Writer");
method.AddTransport("File");
auto engine =
adios.Open("ADIOS2ADIOS2WriteADIOS1Read1D8.h5", "w", method);
auto engine = adios.Open("ADIOS2HDF5WriteHDF5Read1D8.h5", "w", method);
ASSERT_NE(engine, nullptr);
for (size_t step = 0; step < 3; ++step)
......@@ -90,7 +93,7 @@ TEST_F(HDF5WriteReadTest, ADIOS2ADIOS2WriteADIOS1Read1D8)
//******************************************************************************
// 2D 2x4 test data
//******************************************************************************
TEST_F(HDF5WriteReadTest, ADIOS2ADIOS2WriteADIOS1Read2D2x4)
TEST_F(HDF5WriteReadTest, ADIOS2HDF5WriteHDF5Read2D2x4)
{
{
adios::ADIOS adios(adios::Verbose::WARN, true);
......@@ -164,7 +167,7 @@ TEST_F(HDF5WriteReadTest, ADIOS2ADIOS2WriteADIOS1Read2D2x4)
//******************************************************************************
// 2D 4x2 test data
//******************************************************************************
TEST_F(HDF5WriteReadTest, ADIOS2ADIOS2WriteADIOS1Read2D4x2)
TEST_F(HDF5WriteReadTest, ADIOS2HDF5WriteHDF5Read2D4x2)
{
{
adios::ADIOS adios(adios::Verbose::WARN, true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment