ctest failed #767
Replies: 8 comments 6 replies
-
|
How are you running these? |
Beta Was this translation helpful? Give feedback.
-
|
No, ctest |
Beta Was this translation helpful? Give feedback.
-
|
How to change h3.setH3IndexProperties to version 4 ?
…On Fri, 31 Mar 2023 at 05:09, Nick Rabinowitz ***@***.***> wrote:
How are you running these? make && make test?
—
Reply to this email directly, view it on GitHub
<#767 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A4KNLWSD7F5UTUW3DCSBFGLW6YKTJANCNFSM6AAAAAAWMZXQXI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
const newIndexes = ["8f60260b2ab5302", '8f60260b6873791', '8f60260b2364384','8f6026c99a5a812',"8f60b521ab9b471"]; const activeIndexes = new Set(); newIndexes.forEach((index) => { }); const compactedIndexes = compactCells(Array.from(activeIndexes)); console.log('compactedIndexes', compactedIndexes); // Find nearby indexes const activeIndexes1 = new Set(); nearbyIndexes.forEach((index) => { console.log('nearby indexes', Array.from(activeIndexes)); How to nearby active indexes value ? |
Beta Was this translation helpful? Give feedback.
-
|
const newIndexes = ["8f60260b2ab5302", '8f60260b6873791',
'8f60260b2364384','8f6026c99a5a812',"8f60b521ab9b471"];
const activeIndexes = new Set();
newIndexes.forEach((index) => {
cellToVertex(index, { 'active': true });
activeIndexes.add(index);
});
const compactedIndexes = compactCells(Array.from(activeIndexes));
console.log('compactedIndexes', compactedIndexes);
// Find nearby indexes
const centerIndex = '8f60260b2ab5302';
const k = 1;
const nearbyIndexes = gridDisk(centerIndex, k);
const activeIndexes1 = new Set();
nearbyIndexes.forEach((index) => {
if (getResolution(index) === getResolution(centerIndex) &&
getBaseCellNumber(index, 'active')) {
activeIndexes1.add(index);
}
});
console.log('nearby indexes', Array.from(activeIndexes));
How to nearby active indexes value ?
…On Fri, 31 Mar 2023 at 20:18, David Ellis ***@***.***> wrote:
The H3 project does not use ctest, it uses make test
<https://github.com/uber/h3#testing>
You can get that working by running the following in the root of the
repository:
cmake .
make
make test
—
Reply to this email directly, view it on GitHub
<#767 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A4KNLWUKH3VDHQPZTKGAX3TW63VCXANCNFSM6AAAAAAWMZXQXI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
Thanks, I'll check it out.
…On Sat, Apr 1, 2023, 20:25 David Ellis ***@***.***> wrote:
E:\New folder\my-h3\h3\build>cmake . -- Selecting Windows SDK version
10.0.22000.0 to target Windows 10.0.19045. CMake Warning at
CMakeLists.txt:384 (message): clang-format was not detected, so automatic
source code reformatting is disabled
CMake Warning at CMakeLists.txt:396 (message): clang-tidy was not
detected, so source code linting is disabled
-- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) -- Configuring
done (4.4s) -- Generating done (8.6s) -- Build files have been written to:
E:/New folder/my-h3/h3/build
E:\New folder\my-h3\h3\build>make 'make' is not recognized as an internal
or external command, operable program or batch file.
E:\New folder\my-h3\h3\build>make test 'make' is not recognized as an
internal or external command, operable program or batch file.
E:\New folder\my-h3\h3\build>
What is the issues?
You don't appear to have make installed. Since you're on Windows, you
should follow one of these options <https://stackoverflow.com/a/32127632>
to install it for Windows.
—
Reply to this email directly, view it on GitHub
<#767 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A4KNLWSVJ3R3HIJEC46A7QLW7A6VXANCNFSM6AAAAAAWMZXQXI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
Please help me to this
…On Sat, Apr 1, 2023, 15:08 THAMEEM ANSARI ***@***.***> wrote:
const newIndexes = ["8f60260b2ab5302", '8f60260b6873791',
'8f60260b2364384','8f6026c99a5a812',"8f60b521ab9b471"];
const activeIndexes = new Set();
newIndexes.forEach((index) => {
cellToVertex(index, { 'active': true });
activeIndexes.add(index);
});
const compactedIndexes = compactCells(Array.from(activeIndexes));
console.log('compactedIndexes', compactedIndexes);
// Find nearby indexes
const centerIndex = '8f60260b2ab5302';
const k = 1;
const nearbyIndexes = gridDisk(centerIndex, k);
const activeIndexes1 = new Set();
nearbyIndexes.forEach((index) => {
if (getResolution(index) === getResolution(centerIndex) &&
getBaseCellNumber(index, 'active')) {
activeIndexes1.add(index);
}
});
console.log('nearby indexes', Array.from(activeIndexes));
How to nearby active indexes value ?
On Fri, 31 Mar 2023 at 20:18, David Ellis ***@***.***>
wrote:
> The H3 project does not use ctest, it uses make test
> <https://github.com/uber/h3#testing>
>
> You can get that working by running the following in the root of the
> repository:
>
> cmake .
> make
> make test
>
> —
> Reply to this email directly, view it on GitHub
> <#767 (reply in thread)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/A4KNLWUKH3VDHQPZTKGAX3TW63VCXANCNFSM6AAAAAAWMZXQXI>
> .
> You are receiving this because you authored the thread.Message ID:
> ***@***.***>
>
|
Beta Was this translation helpful? Give feedback.
-
|
How to set nearby active indexes and how to get nearby active indexes from
set indexes only?
const newIndexes = ["8f60260b2ab5302", '8f60260b6873791', '8f60260b2364384',
'8f6026c99a5a812',"8f60b521ab9b471"];
const activeIndexes = new Set();
newIndexes.forEach((index) => {
cellToVertex(index, { 'active': true });
activeIndexes.add(index);
});
const compactedIndexes = compactCells(Array.from(activeIndexes));
console.log('compactedIndexes', compactedIndexes);
// Find nearby indexes
const centerIndex = '8f60260b2ab5302';
const k = 1;
const nearbyIndexes = gridDisk(centerIndex, k);
const activeIndexes1 = new Set();
nearbyIndexes.forEach((index) => {
if (getResolution(index) === getResolution(centerIndex) && getBaseCellNumber
(index, 'active')) {
activeIndexes1.add(index);
}
});
console.log('nearby indexes', Array.from(activeIndexes1));
console.log("Array.from(activeIndexes1)", Array.from(activeIndexes1));
On Sat, 1 Apr 2023 at 23:55, THAMEEM ANSARI ***@***.***>
wrote:
… Please help me to this
On Sat, Apr 1, 2023, 15:08 THAMEEM ANSARI ***@***.***>
wrote:
> const newIndexes = ["8f60260b2ab5302", '8f60260b6873791',
> '8f60260b2364384','8f6026c99a5a812',"8f60b521ab9b471"];
>
> const activeIndexes = new Set();
>
> newIndexes.forEach((index) => {
> cellToVertex(index, { 'active': true });
>
> activeIndexes.add(index);
> });
>
> const compactedIndexes = compactCells(Array.from(activeIndexes));
>
> console.log('compactedIndexes', compactedIndexes);
>
> // Find nearby indexes
> const centerIndex = '8f60260b2ab5302';
> const k = 1;
> const nearbyIndexes = gridDisk(centerIndex, k);
>
> const activeIndexes1 = new Set();
>
> nearbyIndexes.forEach((index) => {
> if (getResolution(index) === getResolution(centerIndex) &&
> getBaseCellNumber(index, 'active')) {
> activeIndexes1.add(index);
> }
> });
>
> console.log('nearby indexes', Array.from(activeIndexes));
>
> How to nearby active indexes value ?
>
> On Fri, 31 Mar 2023 at 20:18, David Ellis ***@***.***>
> wrote:
>
>> The H3 project does not use ctest, it uses make test
>> <https://github.com/uber/h3#testing>
>>
>> You can get that working by running the following in the root of the
>> repository:
>>
>> cmake .
>> make
>> make test
>>
>> —
>> Reply to this email directly, view it on GitHub
>> <#767 (reply in thread)>,
>> or unsubscribe
>> <https://github.com/notifications/unsubscribe-auth/A4KNLWUKH3VDHQPZTKGAX3TW63VCXANCNFSM6AAAAAAWMZXQXI>
>> .
>> You are receiving this because you authored the thread.Message ID:
>> ***@***.***>
>>
>
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
How to solve ctest failed issues?
126 - testDirectedEdgeExhaustive_test126 (Not Run)
127 - testVertexExhaustive_test127 (Not Run)
128 - testCellToLocalIjExhaustive_test128 (Not Run)
129 - testGridPathCellsExhaustive_test129 (Not Run)
130 - testGridDistanceExhaustive_test130 (Not Run)
131 - testH3CellAreaExhaustive_test131 (Not Run)
132 - testCliCellToLatLng_test131 (Not Run)
133 - testCliLatLngToCell_test131 (Not Run)
134 - testH3Memory_test132 (Not Run)
Errors while running CTest
Output from these tests are in: E:/New folder/my-h3/h3/build/Testing/Temporary/LastTest.log
Use "--rerun-failed --output-on-failure" to re-run the failed cases verbosely.
Beta Was this translation helpful? Give feedback.
All reactions