スモークテストを実行するmake smokeを追加
authorj8takagi <j8takagi@nifty.com>
Mon, 6 Aug 2018 08:48:34 +0000 (17:48 +0900)
committerj8takagi <j8takagi@nifty.com>
Mon, 6 Aug 2018 08:48:34 +0000 (17:48 +0900)
Makefile
test/system/Makefile

index bff31db..df6cab7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -60,6 +60,9 @@ doc_inner:
 check:
        $(MAKE) -sC test/system
 
 check:
        $(MAKE) -sC test/system
 
+smoke:
+       $(MAKE) -sC test/system smoke
+
 valgrind:
        $(MAKE) -sC test/system valgrind
 
 valgrind:
        $(MAKE) -sC test/system valgrind
 
index 74f8a4a..833b8fe 100644 (file)
@@ -4,11 +4,14 @@ define make_dirs
     $(foreach d,$1,$(MAKE) -sC $d $2)
 endef
 
     $(foreach d,$1,$(MAKE) -sC $d $2)
 endef
 
-.PHONY: check valgrind clean
+.PHONY: check smoke valgrind clean
 
 check:
        @$(call make_dirs,$(CMD),$@; )
 
 
 check:
        @$(call make_dirs,$(CMD),$@; )
 
+smoke:
+       $(MAKE) -sC casl2_smoke check
+
 valgrind:
        @$(call make_dirs,$(CMD),$@; )
 
 valgrind:
        @$(call make_dirs,$(CMD),$@; )