Rename directory to avoid problems on windows.
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 12 Jul 2013 20:53:23 +0000 (20:53 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 12 Jul 2013 20:53:23 +0000 (20:53 +0000)
llvm-svn: 186202

llvm/test/Object/Inputs/AUX/evenlen [deleted file]
llvm/test/Object/Inputs/Other/evenlen [new file with mode: 0644]
llvm/test/Object/archive-update.test

diff --git a/llvm/test/Object/Inputs/AUX/evenlen b/llvm/test/Object/Inputs/AUX/evenlen
deleted file mode 100644 (file)
index d58ed19..0000000
+++ /dev/null
@@ -1 +0,0 @@
-newer
diff --git a/llvm/test/Object/Inputs/Other/evenlen b/llvm/test/Object/Inputs/Other/evenlen
new file mode 100644 (file)
index 0000000..d58ed19
--- /dev/null
@@ -0,0 +1 @@
+newer
index 761cd1aca69fd94ddf7c05725fb3e0e1f52400f6..c8e5afb71a3cf1b1b350e2261384ad66082fe0ac 100644 (file)
@@ -6,7 +6,7 @@ RUN: cd %T
 RUN: rm -f %t.a
 
 Create an achive with the newest file
-RUN: llvm-ar r %t.a %p/Inputs/AUX/evenlen
+RUN: llvm-ar r %t.a %p/Inputs/Other/evenlen
 RUN: llvm-ar p %t.a | FileCheck --check-prefix=NEWER %s
 
 Check that without the 'u' option the member is replaced with an older file.
@@ -14,7 +14,7 @@ RUN: llvm-ar r %t.a %p/Inputs/evenlen
 RUN: llvm-ar p %t.a | FileCheck --check-prefix=OLDER %s
 
 Check that with the 'u' option the member is replaced with a newer file.
-RUN: llvm-ar ru %t.a %p/Inputs/AUX/evenlen
+RUN: llvm-ar ru %t.a %p/Inputs/Other/evenlen
 RUN: llvm-ar p %t.a | FileCheck --check-prefix=NEWER %s
 
 Check that with the 'u' option the member is not replaced with an older file.