X-Git-Url: https://git.saurik.com/apple/ld64.git/blobdiff_plain/d696c285d331ab577dcabd00419d8c30336673da..a61fdf0a731e23ff7eb0cc86ba748fd9af5de879:/unit-tests/test-cases/relocs-c/Makefile diff --git a/unit-tests/test-cases/relocs-c/Makefile b/unit-tests/test-cases/relocs-c/Makefile index b400705..15a7c35 100644 --- a/unit-tests/test-cases/relocs-c/Makefile +++ b/unit-tests/test-cases/relocs-c/Makefile @@ -36,14 +36,14 @@ run: all all: ${CC} ${CCFLAGS} test.c -c -o test.${ARCH}.o + ${FAIL_IF_ERROR} ${OBJECTDUMP} -no_content test.${ARCH}.o > test.${ARCH}.o.dump + #grep "plus" test.${ARCH}.o.dump | ${FAIL_IF_STDIN} + ${LD} -arch ${ARCH} -r -keep_private_externs test.${ARCH}.o -o test-r.${ARCH}.o - ${OBJECTDUMP} -no_content test.${ARCH}.o > test.${ARCH}.o.dump - grep "plus" test.${ARCH}.o.dump | ${FAIL_IF_STDIN} - ${OBJECTDUMP} -no_content test-r.${ARCH}.o > test-r.${ARCH}.o.dump - grep "plus" test-r.${ARCH}.o.dump | ${FAIL_IF_STDIN} + ${FAIL_IF_ERROR} ${OBJECTDUMP} -no_content test-r.${ARCH}.o > test-r.${ARCH}.o.dump + #grep "plus" test-r.${ARCH}.o.dump | ${FAIL_IF_STDIN} + ${PASS_IFF} diff test.${ARCH}.o.dump test-r.${ARCH}.o.dump clean: - rm -rf test.${ARCH}.o test-r.${ARCH}.o test.${ARCH}.o.dump test-r.${ARCH}.o.dump - - + rm -rf *.o *.dump