27 lines
649 B
C
27 lines
649 B
C
/* Copyright (C) 2024 Aryadev Chavali
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see
|
|
* <https://www.gnu.org/licenses/>.
|
|
|
|
* Created: 2024-04-28
|
|
* Author: Aryadev Chavali
|
|
* Description:
|
|
*/
|
|
|
|
#include "test-base.h"
|
|
|
|
#include "test-darr.h"
|
|
|
|
int main(void)
|
|
{
|
|
RUN_TEST_SUITE(test_lib_base);
|
|
RUN_TEST_SUITE(test_lib_darr);
|
|
return 0;
|
|
}
|