[PATCH] D65342: add 'a' to chmod in llvm-lipo executability tests

Bob Haarman via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 26 11:43:34 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL367142: add 'a' to chmod in llvm-lipo executability tests (authored by inglorion, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D65342?vs=211974&id=211975#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D65342/new/

https://reviews.llvm.org/D65342

Files:
  llvm/trunk/test/tools/llvm-lipo/create-executable.test
  llvm/trunk/test/tools/llvm-lipo/thin-executable-universal-binary.test


Index: llvm/trunk/test/tools/llvm-lipo/create-executable.test
===================================================================
--- llvm/trunk/test/tools/llvm-lipo/create-executable.test
+++ llvm/trunk/test/tools/llvm-lipo/create-executable.test
@@ -3,11 +3,11 @@
 # RUN: yaml2obj %p/Inputs/i386-slice.yaml > %t-i386.o
 # RUN: yaml2obj %p/Inputs/x86_64-slice.yaml > %t-x86_64.o
 
-# RUN: chmod -x %t-i386.o
-# RUN: chmod -x %t-x86_64.o
+# RUN: chmod a-x %t-i386.o
+# RUN: chmod a-x %t-x86_64.o
 # RUN: llvm-lipo %t-i386.o %t-x86_64.o -create -output %t-universal.o
 # RUN: test ! -x %t-universal.o
 
-# RUN: chmod +x %t-i386.o
+# RUN: chmod a+x %t-i386.o
 # RUN: llvm-lipo %t-i386.o %t-x86_64.o -create -output %t-universal.o
 # RUN: test -x %t-universal.o
Index: llvm/trunk/test/tools/llvm-lipo/thin-executable-universal-binary.test
===================================================================
--- llvm/trunk/test/tools/llvm-lipo/thin-executable-universal-binary.test
+++ llvm/trunk/test/tools/llvm-lipo/thin-executable-universal-binary.test
@@ -2,11 +2,11 @@
 # UNSUPPORTED: system-windows
 # RUN: yaml2obj %s > %t-universal.o
 
-# RUN: chmod -x %t-universal.o
+# RUN: chmod a-x %t-universal.o
 # RUN: llvm-lipo %t-universal.o -thin i386 -output %t32.o
 # RUN: test ! -x %t32.o
 
-# RUN: chmod +x %t-universal.o
+# RUN: chmod a+x %t-universal.o
 # RUN: llvm-lipo %t-universal.o -thin i386 -output %t32-ex.o
 # RUN: test -x %t32-ex.o
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D65342.211975.patch
Type: text/x-patch
Size: 1446 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190726/91cd41a8/attachment.bin>


More information about the llvm-commits mailing list