2007-08-06 Paul Brook <paul@codesourcery.com>
[binutils.git] / gold / testsuite / testmain.cc
blobeb46b72d84f6c84238654b07dac0791a64d11d81
1 // testmain.cc -- main function for simplisitic gold test framework.
3 #include "gold.h"
5 #include "test.h"
7 using namespace gold_testsuite;
9 int
10 main(int, char** argv)
12 gold::program_name = argv[0];
14 Test_framework tf;
15 Register_test::run_tests(&tf);
17 exit(tf.failures());