do_fork: Propagate error code returned by mcexec

Refs: #731
Change-Id: I7eb52c1c76103d65d108b18b7beaf8041b51cd03
This commit is contained in:
Tomoki Shirasawa
2018-06-18 16:44:26 +09:00
committed by Dominique Martinet
parent 0758f6254e
commit 1cbe389879
13 changed files with 247 additions and 1 deletions

13
test/issues/731/Makefile Normal file
View File

@ -0,0 +1,13 @@
CC=gcc
TARGET=g310a
all:: $(TARGET)
g310a: g310a.c
$(CC) -o g310a g310a.c -Wall -g
test:: $(TARGET)
sh ./C731.sh
clean::
rm -f *.o $(TARGET)