Remove unnecessary elfcpp_config.h file.
[deliverable/binutils-gdb.git] / gold / testsuite / testmain.cc
CommitLineData
5a6f7e2d
ILT
1// testmain.cc -- main function for simplisitic gold test framework.
2
3#include "gold.h"
4
5#include "test.h"
6
7using namespace gold_testsuite;
8
9int
10main(int, char** argv)
11{
12 gold::program_name = argv[0];
13
14 Test_framework tf;
15 Register_test::run_tests(&tf);
16
17 exit(tf.failures());
18}
This page took 0.047645 seconds and 4 git commands to generate.