Update year range in copyright notice of binutils files
[deliverable/binutils-gdb.git] / gold / testsuite / object_unittest.cc
index e95ea3273ab9e479665183584ca0a7af98cabe33..afef14a4b0382c83de530207651bb49e11006d93 100644 (file)
@@ -1,6 +1,6 @@
 // object_unittest.cc -- test Object, Relobj, etc.
 
-// Copyright 2006, 2007 Free Software Foundation, Inc.
+// Copyright (C) 2006-2019 Free Software Foundation, Inc.
 // Written by Ian Lance Taylor <iant@google.com>.
 
 // This file is part of gold.
@@ -23,6 +23,8 @@
 #include "gold.h"
 
 #include "object.h"
+#include "options.h"
+#include "parameters.h"
 
 #include "test.h"
 #include "testfile.h"
@@ -34,28 +36,70 @@ using namespace gold;
 
 // Test basic Object functionality.
 
+template<int size, bool big_endian>
 bool
-Object_test(Test_report*)
+Sized_object_test(const unsigned char* test_file, unsigned int test_file_size)
 {
-  Input_file input_file("test.o", test_file_1, test_file_1_size);
+  parameters_clear_target();
+  // We need a pretend Task.
+  const Task* task = reinterpret_cast<const Task*>(-1);
+  Input_file input_file(task, "test.o", test_file, test_file_size);
   Object* object = make_elf_object("test.o", &input_file, 0,
-                                  test_file_1, test_file_1_size);
+                                  test_file, test_file_size, NULL);
   CHECK(object->name() == "test.o");
   CHECK(!object->is_dynamic());
-  CHECK(object->target() == target_test_pointer);
   CHECK(object->is_locked());
-  object->unlock();
+  object->unlock(task);
   CHECK(!object->is_locked());
-  object->lock();
+  object->lock(task);
   CHECK(object->shnum() == 5);
   CHECK(object->section_name(0).empty());
   CHECK(object->section_name(1) == ".test");
   CHECK(object->section_flags(0) == 0);
   CHECK(object->section_flags(1) == elfcpp::SHF_ALLOC);
-  object->unlock();
+  object->unlock(task);
   return true;
 }
 
+bool
+Object_test(Test_report*)
+{
+  General_options options;
+  int fail = 0;
+
+  set_parameters_options(&options);
+
+#ifdef HAVE_TARGET_32_LITTLE
+  if (!Sized_object_test<32, false>(test_file_1_32_little,
+                                   test_file_1_size_32_little))
+    ++fail;
+  CHECK(&parameters->target() == target_test_pointer_32_little);
+#endif
+
+#ifdef HAVE_TARGET_32_BIG
+  if (!Sized_object_test<32, true>(test_file_1_32_big,
+                                  test_file_1_size_32_big))
+    ++fail;
+  CHECK(&parameters->target() == target_test_pointer_32_big);
+#endif
+
+#ifdef HAVE_TARGET_64_LITTLE
+  if (!Sized_object_test<64, false>(test_file_1_64_little,
+                                   test_file_1_size_64_little))
+    ++fail;
+  CHECK(&parameters->target() == target_test_pointer_64_little);
+#endif
+
+#ifdef HAVE_TARGET_64_BIG
+  if (!Sized_object_test<64, true>(test_file_1_64_big,
+                                  test_file_1_size_64_big))
+    ++fail;
+  CHECK(&parameters->target() == target_test_pointer_64_big);
+#endif
+
+  return fail == 0;
+}
+
 Register_test object_register("Object", Object_test);
 
 } // End namespace gold_testsuite.
This page took 0.028219 seconds and 4 git commands to generate.