6453273aa6
* File containing test for comm.h * Update CommTest.cpp Added gtest API for assert * Update CommTest.cpp Adding copyright * Update CommTest.cpp Removing info and tested as not required. * Update and rename CommTest.cpp to CommTests.cpp * Update CMakeLists.txt
27 baris
547 B
C++
27 baris
547 B
C++
/*************************************************************************
|
|
* Copyright (c) 2025 Advanced Micro Devices, Inc. All rights reserved.
|
|
*
|
|
* See LICENSE.txt for license information
|
|
************************************************************************/
|
|
#include "gtest/gtest.h"
|
|
#include "comm.h"
|
|
|
|
|
|
|
|
namespace RcclUnitTesting
|
|
{
|
|
TEST(CommTests, Sorter)
|
|
{
|
|
// Configuration
|
|
ncclTaskCollSorter* me_ptr = new ncclTaskCollSorter;
|
|
me_ptr->head = nullptr;
|
|
|
|
ASSERT_EQ(ncclTaskCollSorterEmpty(me_ptr), true);
|
|
delete me_ptr;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|