Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use C++11 <random> instead of rand().
[simgrid.git] / src / xbt / unit-tests_main.cpp
1 /* Copyright (c) 2019. The SimGrid Team. All rights reserved.               */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #define CATCH_CONFIG_RUNNER // we supply our own main()
7
8 #include "catch.hpp"
9
10 #include "xbt/log.h"
11
12 int main(int argc, char* argv[])
13 {
14   xbt_log_init(&argc, argv);
15   return Catch::Session().run(argc, argv);
16 }