aboutsummaryrefslogtreecommitdiffstats
path: root/test/Object/nm-trivial-object.test
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2011-01-21 06:27:04 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2011-01-21 06:27:04 +0000
commite696b350f4580128c906c86b5760f8692fd1aaba (patch)
tree42f0499b5fe4160fed0b0632e6634578063b70c4 /test/Object/nm-trivial-object.test
parentd1dace8aea073716daf0055ad07fde1164b2a472 (diff)
downloadexternal_llvm-e696b350f4580128c906c86b5760f8692fd1aaba.zip
external_llvm-e696b350f4580128c906c86b5760f8692fd1aaba.tar.gz
external_llvm-e696b350f4580128c906c86b5760f8692fd1aaba.tar.bz2
Revert "Object: Renable the tests now that none of the build bots complain about aliasing."
This reverts commit 281f3901b7b0869929caf8946c1ad1228bc38922. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123972 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Object/nm-trivial-object.test')
-rw-r--r--test/Object/nm-trivial-object.test19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/Object/nm-trivial-object.test b/test/Object/nm-trivial-object.test
deleted file mode 100644
index 6de1780..0000000
--- a/test/Object/nm-trivial-object.test
+++ /dev/null
@@ -1,19 +0,0 @@
-RUN: llvm-nm %p/TestObjectFiles/trivial-object-test.coff-i386 \
-RUN: | FileCheck %s -check-prefix COFF
-RUN: llvm-nm %p/TestObjectFiles/trivial-object-test.coff-x86-64 \
-RUN: | FileCheck %s -check-prefix COFF
-RUN: llvm-nm %p/TestObjectFiles/trivial-object-test.elf-i386 \
-RUN: | FileCheck %s -check-prefix ELF
-RUN: llvm-nm %p/TestObjectFiles/trivial-object-test.elf-x86-64 \
-RUN: | FileCheck %s -check-prefix ELF
-
-COFF: 00000000 d .data
-COFF: 00000000 t .text
-COFF: 00000000 d L{{_?}}.str
-COFF: U {{_?}}SomeOtherFunction
-COFF: 00000000 T {{_?}}main
-COFF: U {{_?}}puts
-
-ELF: U SomeOtherFunction
-ELF: 00000000 T main
-ELF: U puts