]> git.saurik.com Git - apple/ld64.git/blobdiff - unit-tests/test-cases/lto-live_support_section/Makefile
ld64-409.12.tar.gz
[apple/ld64.git] / unit-tests / test-cases / lto-live_support_section / Makefile
index 01b417f879d11e8d6742616a0b7000c2460ecb5a..df62d3fcfd0d2492380848d752df90a81898b97a 100644 (file)
@@ -31,7 +31,7 @@ include ${TESTROOT}/include/common.makefile
 run: all
 
 all:
-       ${CC} ${CCFLAGS} -flto -o foo foo.c -Wl,-dead_strip,-exported_symbol,_my_global -v
+       ${CC} ${CCFLAGS} -flto -o foo foo.c -Wl,-dead_strip,-exported_symbol,_my_global
     # Check symbols that are expected to be preserved
        nm -m foo | grep _global_metadata | ${FAIL_IF_EMPTY}
        nm -m foo | grep _liveness_binder | ${FAIL_IF_EMPTY}
@@ -40,6 +40,7 @@ all:
 
     # Check symbols that are expected to be stripped
        nm -m foo | grep unused | ${FAIL_IF_STDIN}
-       
+
+       ${PASS_IFF} true
 clean:
        rm  foo