aboutsummaryrefslogtreecommitdiff
path: root/gold/testsuite/testmain.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gold/testsuite/testmain.cc')
-rw-r--r--gold/testsuite/testmain.cc18
1 files changed, 18 insertions, 0 deletions
diff --git a/gold/testsuite/testmain.cc b/gold/testsuite/testmain.cc
new file mode 100644
index 0000000..eb46b72
--- /dev/null
+++ b/gold/testsuite/testmain.cc
@@ -0,0 +1,18 @@
+// testmain.cc -- main function for simplisitic gold test framework.
+
+#include "gold.h"
+
+#include "test.h"
+
+using namespace gold_testsuite;
+
+int
+main(int, char** argv)
+{
+ gold::program_name = argv[0];
+
+ Test_framework tf;
+ Register_test::run_tests(&tf);
+
+ exit(tf.failures());
+}