Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit a20cd9e

Browse files
committed
Add struct support. Also make __typeid not immutable, but still store it in read-only memory
1 parent e5bd553 commit a20cd9e

File tree

3 files changed

+274
-213
lines changed

3 files changed

+274
-213
lines changed

posix.mak

+3-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,9 @@ $(ROOT)/unittest/% : $(ROOT)/unittest/test_runner
327327
# make the file very old so it builds and runs again if it fails
328328
@touch -t 197001230123 $@
329329
# run unittest in its own directory
330-
$(QUIET)$(TIMELIMIT)$< $(call moduleName,$*)
330+
# output PASS info on the same line if running in the console to cut noise
331+
$(QUIET)$(TIMELIMIT)$< $(call moduleName,$*) \
332+
| ([ -t 1 ] && while read line; do printf '%-80s\r' "$$line"; done || cat)
331333
# succeeded, render the file new again
332334
@touch $@
333335

0 commit comments

Comments
 (0)