Skip to content

Commit

Permalink
Merge pull request contiki-ng#2560 from pjonsson/tests-sort-size
Browse files Browse the repository at this point in the history
Makefile.compile-tests: make size output stable
  • Loading branch information
nvt authored Aug 18, 2023
2 parents 4c25ab9 + cb5f9c4 commit e7ac0f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Makefile.compile-test
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ifndef CI
endif
ifdef BINARY_SIZE_LOGFILE
SIZE_LOGFILE ?= BINARY_SIZE_LOGFILE=$(BINARY_SIZE_LOGFILE)
PRINT_LOGFILE = cat $(BINARY_SIZE_LOGFILE)
PRINT_LOGFILE = sort -k 6 $(BINARY_SIZE_LOGFILE) -o $(BINARY_SIZE_LOGFILE) && cat $(BINARY_SIZE_LOGFILE)
endif
PRINT_LOGFILE ?= true
PRINT_DIR ?= --no-print-directory
Expand Down

0 comments on commit e7ac0f6

Please sign in to comment.