1/*
2 * Copyright (c) 2009, 2010, 2011, ETH Zurich.
3 * All rights reserved.
4 *
5 * This file is distributed under the terms in the attached LICENSE file.
6 * If you do not find this file, copies can be found by writing to:
7 * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
8 */
9
10#include <iostream>
11
12#include "cxxtest.hpp"
13
14int main(int argc,
15         char *argv[])
16{
17    std::cout << "Hello World!" << std::endl;
18    std::cout << "This is cxx test" << std::endl;
19    stl_list_test();
20    stl_vector_test();
21    stl_map_test();
22    stl_exception_test();
23    cx11_test();
24    stl_thread_test();
25
26    stl_chrono_test();
27
28    std::cout << "Tests done: SUCCESS" << std::endl;
29    return 0;
30}
31