citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit a514fb3a853bbc3cc5067f398c41d2525e3e9c00
parent 0765716df162cc2a9172f984e6a556003756e399
Author: Kyle Milz <kyle@windows.krwm.net>
Date:   Tue,  3 Jan 2017 19:58:40 -0800

t: add special case for windows exec() fork()

Diffstat:
Mt/inst_log.t | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/t/inst_log.t b/t/inst_log.t @@ -68,6 +68,13 @@ Modified command line is '' No source files found on command line. EOF +if ($^O eq "MSWin32") { + # Windows gets an extra message because exec() is emulated by fork(). + $citrun_log_good .= <<EOF ; +Forked compiler '' +EOF +} + my $citrun_log; $wrap->read(\$citrun_log, 'citrun.log'); $citrun_log = t::utils::clean_citrun_log($citrun_log);