Remove unnecessary elfcpp_config.h file.
[deliverable/binutils-gdb.git] / gold / testsuite / testmain.cc
1 // testmain.cc -- main function for simplisitic gold test framework.
2
3 #include "gold.h"
4
5 #include "test.h"
6
7 using namespace gold_testsuite;
8
9 int
10 main(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.045312 seconds and 5 git commands to generate.