-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add functions to extract data pointer in specific memory spaces from …
…ArrayView
- Loading branch information
Showing
8 changed files
with
90 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (c) 2020, Lawrence Livermore National Security, LLC and LvArray contributors. | ||
* All rights reserved. | ||
* See the LICENSE file for details. | ||
* SPDX-License-Identifier: (BSD-3-Clause) | ||
*/ | ||
|
||
// Source includes | ||
#include "testArrayView.hpp" | ||
|
||
namespace LvArray | ||
{ | ||
namespace testing | ||
{ | ||
|
||
TYPED_TEST( ArrayViewPolicyTest, getPointerInSpace ) | ||
{ | ||
this->getPointerInSpace(); | ||
} | ||
|
||
} // namespace testing | ||
} // namespace LvArray | ||
|
||
// This is the default gtest main method. It is included for ease of debugging. | ||
int main( int argc, char * * argv ) | ||
{ | ||
::testing::InitGoogleTest( &argc, argv ); | ||
int const result = RUN_ALL_TESTS(); | ||
return result; | ||
} |