* hppa.h (pa_opcodes): Use "cX" completer instead of "cx" in fstqx
[external/binutils.git] / gold / testsuite / test.h
index e0556e2..37060d3 100644 (file)
@@ -1,5 +1,25 @@
 // test.h -- simplistic test framework for gold unittests -*- C++ -*-
 
+// Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
+// Written by Ian Lance Taylor <iant@google.com>.
+
+// This file is part of gold.
+
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 3 of the License, or
+// (at your option) any later version.
+
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
+// MA 02110-1301, USA.
+
 #ifndef GOLD_TESTSUITE_TEST_H
 #define GOLD_TESTSUITE_TEST_H
 
@@ -37,8 +57,7 @@ class Test_framework
 
   // Cause the current test to fail.
   void
-  fail()
-  { ++this->current_fail_ = true; }
+  fail(const char* filename, int lineno);
 
   // Report an error from the current test.
   void
@@ -69,8 +88,8 @@ public:
 
   // Mark the test as failing.
   void
-  fail()
-  { this->tf_->fail(); }
+  fail(const char* filename, int lineno)
+  { this->tf_->fail(filename, lineno); }
 
   // Report an error.
   void
@@ -111,8 +130,13 @@ class Register_test
 
 // Check that a condition is true.  If it is false, report a failure.
 
-#define CHECK(cond) \
-  ((cond) ? 0 : (::gold_testsuite::Test_framework::report()->fail(), 0))
+#define CHECK(cond)                                                    \
+  ((void)                                                              \
+   ((cond)                                                             \
+    ? 0                                                                        \
+    : (::gold_testsuite::Test_framework::report()->fail(__FILE__,      \
+                                                       __LINE__),      \
+       0)))
 
 // Report an error during a test.