Changeset 254219 in webkit


Ignore:
Timestamp:
Jan 8, 2020 1:18:42 PM (4 years ago)
Author:
keith_miller@apple.com
Message:

Fix testing Makefile to inherit preprocessor definitions
https://bugs.webkit.org/show_bug.cgi?id=205940

Reviewed by Mark Lam.

.:

  • Makefile.shared:

Tools:

  • Makefile:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r254181 r254219  
     12020-01-08  Keith Miller  <keith_miller@apple.com>
     2
     3        Fix testing Makefile to inherit preprocessor definitions
     4        https://bugs.webkit.org/show_bug.cgi?id=205940
     5
     6        Reviewed by Mark Lam.
     7
     8        * Makefile.shared:
     9
    1102020-01-07  Keith Miller  <keith_miller@apple.com>
    211
  • trunk/Makefile.shared

    r254181 r254219  
    104104testing t: force
    105105        $(SCRIPTS_PATH)/set-webkit-configuration --release $(ASAN_OPTION) $(WK_LTO_OPTION)
    106         ( $(SET_COLOR_DIAGNOSTICS_ARG); xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) GCC_PREPROCESSOR_DEFINITIONS="ASSERT_ENABLED=1" | $(OUTPUT_FILTER) && exit $${PIPESTATUS[0]} )
     106        ( $(SET_COLOR_DIAGNOSTICS_ARG); xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) GCC_PREPROCESSOR_DEFINITIONS='ASSERT_ENABLED=1 $$(inherited)' | $(OUTPUT_FILTER) && exit $${PIPESTATUS[0]} )
    107107
    108108analyze:
  • trunk/Tools/ChangeLog

    r254196 r254219  
     12020-01-08  Keith Miller  <keith_miller@apple.com>
     2
     3        Fix testing Makefile to inherit preprocessor definitions
     4        https://bugs.webkit.org/show_bug.cgi?id=205940
     5
     6        Reviewed by Mark Lam.
     7
     8        * Makefile:
     9
    1102020-01-08  Paulo Matos  <pmatos@igalia.com>
    211
  • trunk/Tools/Makefile

    r254181 r254219  
    3535testing t:
    3636        @for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
    37         if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
     37        if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
    3838
    3939analyze:
Note: See TracChangeset for help on using the changeset viewer.