Files
unison/utils/test-runner.cc

14 lines
204 B
C++
Raw Permalink Normal View History

2009-09-12 19:44:17 -07:00
/*
* Copyright (c) 2009 University of Washington
*
2024-06-17 16:17:10 +02:00
* SPDX-License-Identifier: GPL-2.0-only
2009-09-12 19:44:17 -07:00
*/
#include "ns3/test.h"
2022-10-07 20:08:35 +00:00
int
main(int argc, char* argv[])
{
2022-10-07 20:08:35 +00:00
return ns3::TestRunner::Run(argc, argv);
2009-09-12 19:44:17 -07:00
}