File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
arcane/src/arcane/utils/tests Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ // -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2
+ // -----------------------------------------------------------------------------
3
+ // Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4
+ // See the top-level COPYRIGHT file for details.
5
+ // SPDX-License-Identifier: Apache-2.0
6
+ // -----------------------------------------------------------------------------
7
+
8
+ #include < gtest/gtest.h>
9
+
10
+ #include " arcane/utils/HashTableMap.h"
11
+ #include " arcane/utils/PlatformUtils.h"
12
+
13
+ #include < iostream>
14
+
15
+ /* ---------------------------------------------------------------------------*/
16
+ /* ---------------------------------------------------------------------------*/
17
+
18
+ using namespace Arcane ;
19
+
20
+ TEST (TestPlatform, Misc)
21
+ {
22
+ Int64 page_size = platform::getPageSize ();
23
+ std::cout << " PageSize=" << page_size << " \n " ;
24
+ ASSERT_TRUE (page_size>0 );
25
+ }
26
+
27
+ /* ---------------------------------------------------------------------------*/
28
+ /* ---------------------------------------------------------------------------*/
You can’t perform that action at this time.
0 commit comments