Explorar o código

[LibOS] Stop building tests after encountering an error

Jia Zhang %!s(int64=6) %!d(string=hai) anos
pai
achega
6b2e9bb9a2
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      LibOS/shim/test/Makefile

+ 1 - 1
LibOS/shim/test/Makefile

@@ -10,5 +10,5 @@ default: all
 .PHONY: all clean sgx-tokens
 all clean sgx-tokens:
 	for d in $(SUBDIRS); do \
-		$(MAKE) -C $$d $@; \
+		$(MAKE) -C $$d $@ || exit 255; \
 	done