X-Git-Url: https://git.saurik.com/apple/ld64.git/blobdiff_plain/2f2f92e40575142405a1caa9bcf847f7ad011c92..a645023da60d22e86be13f7b4d97adeff8bc6665:/unit-tests/test-cases/objc-literal-pointers/Makefile diff --git a/unit-tests/test-cases/objc-literal-pointers/Makefile b/unit-tests/test-cases/objc-literal-pointers/Makefile old mode 100755 new mode 100644 index 9edc357..6596f83 --- a/unit-tests/test-cases/objc-literal-pointers/Makefile +++ b/unit-tests/test-cases/objc-literal-pointers/Makefile @@ -36,10 +36,10 @@ run: all all: ${CC} ${CCFLAGS} test.m -c -o test.o - ObjectDump -no_content test.o | grep -v zero-fill-at> test.dump + ${OBJECTDUMP} -no_content test.o > test.dump - ${LD} -arch ${ARCH} -r test.o -o test-r.o - ObjectDump -no_content test-r.o | grep -v zero-fill-at > test-r.dump + ${LD} -arch ${ARCH} -r test.o -keep_private_externs -o test-r.o + ${OBJECTDUMP} -no_content test-r.o > test-r.dump diff test.dump test-r.dump | ${PASS_IFF_EMPTY}